日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > vue >内容正文

vue

Vue之element table 后端排序实现

發布時間:2025/7/14 vue 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Vue之element table 后端排序实现 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Vue之element table 后端排序實現

1、如果需要后端排序,需將sortable設置為custom,同時在 Table 上監聽sort-change事件,在事件回調中可以獲取當前排序的字段名和排序順序,從而向接口請求排序后的表格數據。

<el-table @sort-change='tableSortChange'><el-table-column sortable='custom' prop="createTime" label="創建時間"> </el-table-column> </el-table>

2、定義methods監聽sort-change事件

tableSortChange(column) {this.listQuery.pageNo = 1if (column.order === 'descending') { this.listQuery.sortby = column.prop this.listQuery.order = 'desc' } else { this.listQuery.sortby = column.prop this.listQuery.order = 'asc' } this.getList() }

3、通過axios提交請求數據到后端

getList() {this.listLoading = truefetchList(this.listQuery).then(response => { this.list = response.data.items this.total = response.data.total this.listLoading = false }) }

?

轉載于:https://www.cnblogs.com/volodya/p/11377284.html

總結

以上是生活随笔為你收集整理的Vue之element table 后端排序实现的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。