拖拽排序(el-table)

一:表格的拖拽排序

方法:使用sortableJs插件实现拖拽排序

1:使用npm安装sortableJs插件

npm install sortablejs --save

2:在需要使用的页面进行引入

import Sortable from 'sortablejs'//引入插件

3:实现表格的行拖拽排序完整代码

        注意:此处只是对表格的行实现的拖拽排序,若要实现列的拖拽排序请往下看

<template>
  <div style="width:800px">
    <el-table :data="tableData"
      border
      row-key="id"
      align="left">
     <el-table-column 
        prop="date"
        label="日期"> 
      </el-table-column>
      <el-table-column 
        prop="name"
        label="姓名"> 
      </el-table-column>
      <el-table-column 
        prop="address"
        label="地址"> 
      </el-table-column>
    </el-table>
  </div>
</template>
<script>
import Sortable from 'sortablejs'//引入插件
export default {
  data() {
    return {
      tableData: [//表格数据
        {
          id: '1',
          date: '2016-05-02',
          name: '王小虎1',
          address: '上海市普陀区金沙江路 100 弄'
        },
        {
          id: '2',
          date: '2016-05-04',
          name: '王小虎2',
          address: '上海市普陀区金沙江路 200 弄'
        },
        {
          id: '3',
          date: '2016-05-01',
          name: '王小虎3',
          address: '上海市普陀区金沙江路 300 弄'
        },
        {
          id: '4',
          date: '2016-05-03',
          name: '王小虎4',
          address: '上海市普陀区金沙江路 400 弄'
        }
      ]
    }
  },
  mounted() {
    // 阻止默认行为
	  document.body.ondrop = function (event) {
      event.preventDefault();
      event.stopPropagation();
    };
    this.rowDrop()//行拖拽
  },
  methods: {
    //行拖拽
    rowDrop() {
      const tbody = document.querySelector('.el-table__body-wrapper tbody')
      const _this = this
      Sortable.create(tbody, {
        onEnd({ newIndex, oldIndex }) {
          if (newIndex == oldIndex) return
          _this.tableData.splice(
            newIndex,
            0,
            _this.tableData.splice(oldIndex, 1)[0]
          )
          var newArray = _this.tableData.slice(0)
          _this.tableData = []
          _this.$nextTick(function () {
            _this.tableData = newArray
          })
        }
      })
    },
    
  }
}
</script>

实现表格的行列同时拖拽排序

<template>
  <div style="width:800px">
    <el-table :data="tableData" border>
     <el-table-column v-for="(item, index) in col"
        :key="`col_${index}`"
        :prop="dropCol[index].prop"
        :label="item.label"> 
      </el-table-column>
    </el-table>
  </div>
</template>
<script>
import Sortable from 'sortablejs'//引入插件
export default {
  data() {
    return {
      col: [
        {
          label: '日期',
          prop: 'date'
        },
        {
          label: '姓名',
          prop: 'name'
        },
        {
          label: '地址',
          prop: 'address'
        }
      ],
      dropCol: [
        {
          label: '日期',
          prop: 'date'
        },
        {
          label: '姓名',
          prop: 'name'
        },
        {
          label: '地址',
          prop: 'address'
        }
      ],
      tableData: [
        {
          id: '1',
          date: '2016-05-02',
          name: '王小虎1',
          address: '上海市普陀区金沙江路 100 弄'
        },
        {
          id: '2',
          date: '2016-05-04',
          name: '王小虎2',
          address: '上海市普陀区金沙江路 200 弄'
        },
        {
          id: '3',
          date: '2016-05-01',
          name: '王小虎3',
          address: '上海市普陀区金沙江路 300 弄'
        },
        {
          id: '4',
          date: '2016-05-03',
          name: '王小虎4',
          address: '上海市普陀区金沙江路 400 弄'
        }
      ]
    }
  },
  mounted() {
    // 阻止默认行为
	  document.body.ondrop = function (event) {
      event.preventDefault();
      event.stopPropagation();
    };
    this.rowDrop()//行拖拽
    this.columnDrop()//列拖拽
  },
  methods: {
    //行拖拽
    rowDrop() {
      const tbody = document.querySelector('.el-table__body-wrapper tbody')
      const _this = this
      Sortable.create(tbody, {
        onEnd({ newIndex, oldIndex }) {
          if (newIndex == oldIndex) return
          _this.tableData.splice(
            newIndex,
            0,
            _this.tableData.splice(oldIndex, 1)[0]
          )
          var newArray = _this.tableData.slice(0)
          _this.tableData = []
          _this.$nextTick(function () {
            _this.tableData = newArray
          })
        }
      })
    },
    //列拖拽
    columnDrop() {
      const wrapperTr = document.querySelector('.el-table__header-wrapper tr')
      this.sortable = Sortable.create(wrapperTr, {
        animation: 180,
        delay: 0,
        onEnd: evt => {
          const oldItem = this.dropCol[evt.oldIndex]
          this.dropCol.splice(evt.oldIndex, 1)
          this.dropCol.splice(evt.newIndex, 0, oldItem)
        }
      })
    }
  }
}
</script>

二:列表的拖拽排序

列表拖拽排序一般只用在行的拖拽排序,此处我们依旧可以使用sortableJs来实现拖拽排序的功能,具体代码如下

<template>
  <div style="width:800px">
    <ul id="items">
      <li v-for="item in listData" :key="item.id">
        {{item.name}}
      </li>
    </ul>
  </div>
</template>
<script>
import Sortable from 'sortablejs'//引入插件
export default {
  data() {
    return {
      listData:[
        {
          id:1,
          name:'数据一'
        },
        {
          id:2,
          name:'数据二'
        },
        {
          id:3,
          name:'数据三'
        },
        {
          id:4,
          name:'数据四'
        }
      ]
    }
  },
  mounted() {
    // 阻止默认行为
	  document.body.ondrop = function (event) {
      event.preventDefault();
      event.stopPropagation();
    };
    this.rowDrop()//行拖拽
  },
  methods: {
    //行拖拽
    rowDrop() {
      const tbody = document.getElementById('items')
      const that = this
      Sortable.create(tbody, {
        onEnd: function (evt) {
         // 获取排序之后的data数据
          that.listData.splice(evt.newIndex, 0, that.listData.splice(evt.oldIndex, 1)[0])
          var newArray = that.listData.slice(0)
          that.listData = []
          that.$nextTick(function () {
            that.listData = newArray
          })
        }
      })
    },
    
  }
}
</script>

  • 12
    点赞
  • 48
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
el-table 是 Element UI 中的一个表格组件,它提供了丰富的功能和选项,包括排序。在 el-table 中实现排序的步骤如下: 1. 首先,确保你已经引入了 Element UI 的库文件和样式。 2. 在 el-table 中添加一个列,用于显示排序的图标或者手柄。可以使用自定义列模板来实现这个功能。 3. 使用 sortable 属性来启用排序功能。将 sortable 属性设置为 'custom',表示使用自定义排序方式。 4. 在 el-table 上绑定一个事件处理函数,用于处理排序的逻辑。可以使用 sortable-change 事件来监听排序的变化。 下面是一个示例代码,演示了如何在 el-table 中实现排序: ```html <template> <el-table :data="tableData" @sortable-change="handleSort"> <el-table-column prop="name" label="姓名"></el-table-column> <el-table-column prop="age" label="年龄"></el-table-column> <el-table-column label="排序"> <template slot-scope="scope"> <i class="el-icon-drag-handle" style="cursor: move;"></i> </template> </el-table-column> </el-table> </template> <script> export default { data() { return { tableData: [ { name: '张三', age: 20 }, { name: '李四', age: 25 }, { name: '王五', age: 30 }, ], }; }, methods: { handleSort({ newIndex, oldIndex }) { const movedItem = this.tableData.splice(oldIndex, 1); this.tableData.splice(newIndex, 0, movedItem); }, }, }; </script> ``` 在上面的示例中,我们使用了 el-icon-drag-handle 图标作为手柄,通过 sortable-change 事件监听排序的变化,并在 handleSort 方法中处理排序的逻辑。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值