当前位置:   article > 正文

使用sortablejs 实现el-table的拖拽和排序_表单拖拽排序

表单拖拽排序

1、在项目目录下安装 sortablejs:
npm install sortablejs --save
2、在要实现表格拖拽的文件中引入 sortablejs:
import Sortable from ‘sortablejs’

3.应用
在这里插入图片描述
一定要在nextTick里面去做调用,否则有可能不生效
this.$nextTick(() => {
this.initSortTable();
});
在这里插入图片描述

按照id进行排序,必须在nextTick里面调用否则数据会发生错乱并且排序不生效
在这里插入图片描述

// 初始化拖拽表单
initSortTable() {
// 获取 el-table
const tableTag = this. r e f s [ " d r a g T a b l e " ] . refs["dragTable"]. refs["dragTable"].el;
// 获取 tbody 节点
const elTbody = tableTag.querySelectorAll(
“.el-table__body-wrapper > table > tbody”
)[0];
// 拖拽排序
this.sortable = Sortable.create(elTbody, {
delay: 0,
animation: 300, // 拖拽延时,效果更好看
onEnd: evt => {
// 监听拖动结束事件
// console.log(this); // this是当前vue上下文
// console.log(evt.oldIndex); // 当前行的被拖拽前的顺序
// console.log(evt.newIndex); // 当前行的被拖拽后的顺序

                // 下面将拖拽后的顺序进行修改

                const currRow = this.ruleForm.rows.splice(
                    evt.oldIndex,
                    1
                )[0];
                this.ruleForm.rows.splice(evt.newIndex, 0, currRow);
                this.$nextTick(() => {
                    this.ruleForm.rows.forEach((item, index) => {
                        item.id = index + 1;
                    });
                });
            

      
            }
        });
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/965198
推荐阅读
相关标签
  

闽ICP备14008679号