中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue+element-ui+ajax怎么實現一個表格

發布時間:2021-05-18 11:43:55 來源:億速云 閱讀:232 作者:小新 欄目:web開發

這篇文章主要介紹了vue+element-ui+ajax怎么實現一個表格,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

實例如下:

<!DOCTYPE html>
<html>
<head>
<script src="js/jquery-3.2.1.js"></script>
<script src="vue.js"></script>
<!-- 引入樣式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css" rel="external nofollow" >
<!-- 引入組件庫 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
</head>
<body>
 
<div id="app">
<template>
 <el-table :data="tableData" >
 <el-table-column label="任務" width="180">
  <template slot-scope="scope">
  <el-popover trigger="hover" placement="top">
   <p>姓名: {{ scope.row.name }}</p>
   <div slot="reference" class="name-wrapper">
   <el-tag size="medium">{{ scope.row.name }}</el-tag>
   </div>
  </el-popover>
  </template>
 </el-table-column>
 <el-table-column label="歷時" width="180">
  <template slot-scope="scope">
  <i class="el-icon-time"></i>
  <span >{{ scope.row.take }}</span>
  </template>
 </el-table-column> 
 <el-table-column label="開始時間" width="180">
  <template slot-scope="scope">
  <i class="el-icon-time"></i>
  <span >{{ scope.row.startTime }}</span>
  </template>
 </el-table-column> 
 <el-table-column label="結束時間" width="180">
  <template slot-scope="scope">
  <i class="el-icon-time"></i>
  <span >{{ scope.row.finishTime }}</span>
  </template>
 </el-table-column>
 <el-table-column label="操作">
  <template slot-scope="scope">
  <el-button size="mini" @click="handleEdit(scope.$index, scope.row)">編輯</el-button>
  <el-button size="mini" type="danger" @click="handleDelete(scope.$index, scope.row)">刪除</el-button>
  </template>
 </el-table-column>
 </el-table>
</template>
</div> 
 <script type="text/javascript">
 new Vue({
 el:'#app',
 data:{
  tableData: [],
  getUrl: 'http://localhost:8080/mytime/getTodayTomatos',
 },
 created: function(){
  this.getTableData()
 },
 methods:{
  getTableData:function(){
  var self = this;
  $.ajax({
   type : "post",
   dataType : "json",
   contentType : "application/json",
   url : "http://localhost:8080/mytime/getTodayTomatos",
   success : function(json) {
   self.tableData=json.fitomatos;
   },
   error : function(json) {
   alert("加載失敗");
  }
  });
  },
  handleEdit(index, row) {
  console.log(index, row.name);
  },
  handleDelete(index, row) {
  console.log(index, row);
  }
 }
 })
</script>
</body>
</html>

效果圖:

vue+element-ui+ajax怎么實現一個表格

為什么要使用Vue

Vue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創建可維護性和可測試性更強的代碼庫,Vue允許可以將一個網頁分割成可復用的組件,每個組件都包含屬于自己的HTML、CSS、JavaScript,以用來渲染網頁中相應的地方,所以越來越多的前端開發者使用vue。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“vue+element-ui+ajax怎么實現一個表格”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平昌县| 深水埗区| 阿拉尔市| 辽源市| 抚远县| 灵璧县| 武宣县| 南丰县| 边坝县| 英山县| 英超| 连州市| 玉田县| 丹凤县| 沁阳市| 林甸县| 北碚区| 建平县| 炎陵县| 修文县| 视频| 潞城市| 东平县| 普安县| 饶河县| 滨州市| 兖州市| 大厂| 天峻县| 怀远县| 祁门县| 宝山区| 峨山| 临沂市| 双江| 城口县| 滁州市| 探索| 犍为县| 丹东市| 阳谷县|