当前位置: 首页 > news >正文

el-tabel实现拖拽排序

1、使用npm安装sortableJs插件

npm install sortablejs --save

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

import Sortable from 'sortablejs'

3、表格拖拽排序完整代码

<template><div class="home"><el-table :data="tableData" style="width: 100%"><el-table-column v-for="(item, index) in col" :key="`col_${index}`" :prop="item.prop" :label="item.label"></el-table-column></el-table></div>
</template><script setup>
import Sortable from 'sortablejs'; //引入插件
import { onMounted, ref, nextTick } from 'vue';
const col = ref([{label: '日期',prop: 'date'},{label: '姓名',prop: 'name'},{label: '地址',prop: 'address'}
]);const tableData = ref([{date: '2016-05-03',name: '建筑电工',address: '天河区'},{date: '2016-05-02',name: '管道工',address: '番禺区'},{date: '2016-05-04',name: '木工',address: '越秀区'},{date: '2016-05-01',name: '架子工',address: '海珠区'}
]);onMounted(() => {// 阻止默认行为document.body.ondrop = function (event) {event.preventDefault();event.stopPropagation();};rowDrop();columnDrop();
});
//行拖拽
const rowDrop = () => {const tbody = document.querySelector('.el-table__body-wrapper tbody');Sortable.create(tbody, {onEnd({ newIndex, oldIndex }) {if (newIndex == oldIndex) return;tableData.value.splice(newIndex, 0, tableData.value.splice(oldIndex, 1)[0]);const newArray = tableData.value.slice(0);tableData.value = [];nextTick(function () {tableData.value = newArray;});}});
};
//列拖拽
const columnDrop = () => {const wrapperTr = document.querySelector('.el-table__header-wrapper tr');Sortable.create(wrapperTr, {animation: 180,delay: 0,onEnd: (evt) => {const oldItem = col.value[evt.oldIndex];col.value.splice(evt.oldIndex, 1);col.value.splice(evt.newIndex, 0, oldItem);const newArray = col.value.slice(0);col.value = [];nextTick(function () {col.value = newArray;});}});
};
</script><style scoped>
.home {font-size: 36px;
}
</style>

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

<template><div class="home"><div style="width: 800px"><ul id="items"><li v-for="item in listData" :key="item.id" class="item">{{ item.name }}</li></ul></div></div>
</template><script setup>
import Sortable from 'sortablejs'; //引入插件
import { onMounted, ref, nextTick } from 'vue';
const listData = ref([{id: 1,name: '数据一'},{id: 2,name: '数据二'},{id: 3,name: '数据三'},{id: 4,name: '数据四'}
]);
onMounted(() => {// 阻止默认行为document.body.ondrop = function (event) {event.preventDefault();event.stopPropagation();};rowDrop();
});
//行拖拽
const rowDrop = () => {const tbody = document.getElementById('items');Sortable.create(tbody, {onEnd({ newIndex, oldIndex }) {if (newIndex == oldIndex) return;listData.value.splice(newIndex, 0, listData.value.splice(oldIndex, 1)[0]);const newArray = listData.value.slice(0);listData.value = [];nextTick(function () {listData.value = newArray;console.log(listData.value);});}});
};
</script><style scoped>
.item {border: 1px solid #a7a2a2;padding: 10px;
}
</style>

参考:拖拽排序(el-table)

http://www.lryc.cn/news/251027.html

相关文章:

  • 设计模式-结构型模式之适配器设计模式
  • Android 中的权限
  • 【java智慧工地源码】智慧工地物联网云平台,实现现场各类工况数据采集、存储、分析与应用
  • oracle 19c rac 安装手册
  • sqlMap
  • 蓝桥杯每日一题2023.12.2
  • 【计算机网络学习之路】序列化,反序列化和初识协议
  • 亚马逊云科技推出新一代自研芯片
  • VIT总结
  • C++11——initializer_list
  • 数学字体 Mathematical fonts
  • Python简单模拟蓝牙车钥匙协议
  • 【Python3】【力扣题】383. 赎金信
  • 外包搞了6年,技术退步明显......
  • uni-app x生成的安卓包,安装时,提示不兼容。解决方案
  • Screenshot To Code
  • SpringBoot 是如何启动一个内置的Tomcat
  • 《功能磁共振多变量模式分析中空间分辨率对解码精度的影响》论文阅读
  • pygame实现贪吃蛇小游戏
  • 反序列化漏洞(二)
  • 【开箱即用】前后端同时开源!周末和AI用Go语言共同研发了一款笔记留言小程序!
  • java对xml压缩
  • GoLang切片
  • 前端入门(四)Ajax、Promise异步、Axios通信、vue-router路由、组件库
  • 正则表达式回溯陷阱
  • MATLAB实战 | S函数的设计与应用
  • Day41 使用listwidget制作简易图片播放器
  • matlab 基于卡尔曼滤波的GPS-INS的数据融合的导航
  • vivado实现分析与收敛技巧6-策略建议
  • SOCKET、TCP、HTTP之间的区别与联系