element-ui table 多列组合排序

element-ui table 配合后端实现多列组合排序。
思路:
1.监听sort-change事件,在该事件中缓存和修正当前的排序规则。并根据保存的排序规则调接口刷新表格数据;
2.监听header-cell-class-name事件,在该事件中修正表头排序图标的样式。保证图标的样式逻辑和缓存的排序规则一致。
在这里插入图片描述

在这里插入图片描述 

   <el-table
          :data="pagination.data"
          ref="multipleTable"
          class="orioc-table center-table"
          row-key="id"
          v-loading="listLoading"
          @sort-change='handleSortChange'
          :header-cell-class-name="handleHeadAddClass"
          stripe border>
            <el-table-column
            prop="organizationName"
            label="单位名称"
            min-width="130" sortable> </el-table-column>
          <el-table-column
            prop="elevatorCount"
            label="台量"
            width="100"
            align="center" sortable> </el-table-column>
 </el-table>
    data() {
      return {
        sortField: {},
        orderBys: []
      }
    },
methods: {
      handleSortChange({ order, prop }) {
        // 触发的排序和缓存的排序相同时,取消该字段的排序
        if (!order || this.sortField[prop] === order) {
          this.sortField[prop] = null
        } else {
          this.sortField[prop] = order
        }
        // console.log(this.sortField)
        this.orderBys = []
        let direction = ''
        for (const i in this.sortField) {
          if (this.sortField[i] == 'ascending') {
            direction = 'ASC'
          } else if (this.sortField[i] == 'descending') {
            direction = 'DESC'
          }
        this.orderBys.push({
            "column": i,
            "direction": direction
          })
        }
        // console.log(' this.orderBys', this.orderBys)
        this.onSearch() //调用后端查询接口
      },
      handleHeadAddClass({ column }) {
        if (this.sortField[column.property]) {
          column.order = this.sortField[column.property]
        }
      },
      }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值