您好,登錄后才能下訂單哦!
這篇文章主要介紹了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是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創建可維護性和可測試性更強的代碼庫,Vue允許可以將一個網頁分割成可復用的組件,每個組件都包含屬于自己的HTML、CSS、JavaScript,以用來渲染網頁中相應的地方,所以越來越多的前端開發者使用vue。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“vue+element-ui+ajax怎么實現一個表格”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。