el-table实现拖拽效果
一、概述Sortable.js是一款优秀的js拖拽库,支持IE9及以上版本IE浏览器和现代浏览器,也可以运行在移动触摸设备中,不依赖jQuery,支持AngularJS、React、Vue框架和任何CSS库,如bootstrap、elementUI,可以用来拖拽div、table等元素。二、安装插件npm i -S vuedraggablevuedraggable依赖Sortable.js,我们可
·
一、概述
Sortable.js
是一款优秀的js拖拽库,支持IE9及以上版本IE浏览器和现代浏览器,也可以运行在移动触摸设备中,不依赖jQuery
,支持AngularJS
、React
、Vue
框架和任何CSS
库,如bootstrap
、elementUI
,可以用来拖拽div
、table
等元素。
二、安装插件
npm i -S vuedraggable
vuedraggable
依赖Sortable.js
,我们可以直接引入Sortable使用Sortable的特性。
vuedraggable
是Sortable
的一种加强,实现组件化的思想,可以结合Vue,使用起来更方便。
三、使用
需要注意的是el-table
必须指定row-key
,row-key
必须是唯一的,不然会出现排序不对的情况。
<template>
<div>
<el-table :data="tableData" row-key="id">
<el-table-column prop="name" label="姓名"></el-table-column>
<el-table-column prop="address" label="地址"></el-table-column>
<el-table-column prop="date" 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 弄'
}
],
col: [
{
label: '日期',
prop: 'date'
},
{
label: '姓名',
prop: 'name'
},
{
label: '地址',
prop: 'address'
}
],
dropCol: [
{
label: '日期',
prop: 'date'
},
{
label: '姓名',
prop: 'name'
},
{
label: '地址',
prop: 'address'
}
]
}
},
mounted() {
this.rowDrop();
this.columnDrop();
},
methods: {
// 行拖拽
rowDrop() {
// 要侦听拖拽响应的DOM对象
const tbody = document.querySelector('.el-table__body-wrapper tbody');
const that = this;
Sortable.create(tbody, {
// 结束拖拽后的回调函数
onEnd({ newIndex, oldIndex }) {
console.log('拖动了行,当前序号:' + newIndex);
const currentRow = that.tableData.splice(oldIndex, 1)[0];
that.tableData.splice(newIndex, 0, currentRow);
}
})
},
// 列拖拽
columnDrop() {
// 要侦听拖拽响应的DOM对象
const wrapperTr = document.querySelector('.el-table__body-wrapper tr');
const that = this;
Sortable.create(wrapperTr, {
animation: 180,
delay: 0,
// 结束拖拽后的回调函数
onEnd: evt => {
console.log('拖动了列:');
const oldItem = that.dropCol[evt.oldIndex];
that.dropCol.splice(evt.oldIndex, 1);
that.dropCol.splice(evt.newIndex, 0, oldItem);
}
})
}
}
}
</script>
更多推荐
已为社区贡献3条内容
所有评论(0)