美文网首页
element el-table 表格远程后台排序sort-ch

element el-table 表格远程后台排序sort-ch

作者: 杨二哥 | 来源:发表于2021-06-09 09:21 被阅读0次

<el-table ref="nana" @sort-change='tableChange' v-cloak id="myTable" height="100%" :data="pageDate" style="width:100%;height:100%" :default-sort="{prop: 'date', order: 'descending'}">

       <el-table-column prop="typeId" label="商品价格" sortable='custom' width='130px'>

      </el-table-column>

</el-table>

这里@sort-change='tableChange'与sortable='custom' 必须同时设置。注册tableChange事件传column,prop,order参数即可获取不同的值,然后传参数即可

tableChange:function(column,prop,order){

  console.log(column)

  console.log(prop)

  console.log(order)

},

相关文章

网友评论

      本文标题:element el-table 表格远程后台排序sort-ch

      本文链接:https://www.haomeiwen.com/subject/slnseltx.html