el-table使用sort-method进行排序

本文详细介绍了在Vue.js中使用Element UI组件库的Table时,如何正确设置`sort-method`进行自定义排序。关键点在于将`sort-method`属性设置在`<el-table-column>`内,并确保添加`sortable`属性。同时,对于排序方法`sortByPrice`的实现,需要注意返回值应为数值而非布尔值,以确保正确比较。文章还提供了示例代码帮助理解这一过程。
摘要由CSDN通过智能技术生成
1、由于sort-method在Table-column Attributes中,所以应使用:sort-method而不是@sort-method,且必须添加sortable属性
<el-table-column sortable label="客单价(元)" :sort-method="sortByPrice" min-width="100" align="center">
 <template slot-scope="scope">
  <span v-if="scope.row.collection_amount!==0">{{ (scope.row.collection_amount/scope.row.collection_num)/100 ' moneyFilter }}  
  </span>
  <span v-else>0.00</span>
 </template>
</el-table-column>
**2、判断大小并返回

踩坑:返回值应为数值,而不是boolean

// 根据客单价排序
sortByPrice(row, row1) {
 if (row.collection_amount === 0) {
  return -1
 }
 if ((row.collection_amount / row.collection_num) < (row1.collection_amount / row1.collection_num)) {
  return -1
 } else {
  return 1
 }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值