Ant Design Vue 树形控件Tree实现拖拽功能

Ant Design Vue 树形控件Tree实现拖拽功能
主要加入draggable拖拽属性和drop事件,支持拖拽

<a-tree 
  v-model="checkedKeys4"
  checkStrictly
  :showLine="true"
  checkable
  @check="onCheckChange"
  :tree-data="treeData"
  draggable
  @drop="onDrop"
>
</a-tree>

具体drop事件代码实现如下

onDrop(info){
    const dropPos = info.node.pos.split('-');
    const dropPosition = info.dropPosition - Number(dropPos[dropPos.length - 1]);
    const dropKey = info.node.dataRef.key;
    const dragKey = info.dragNode.dataRef.key;
    
    const loop = (data, key, callback) => {
        data.forEach((item, index) => {
        if (item.key === key) {
            return callback(item, index, data);
        }

        if (item.children) {
            return loop(item.children, key, callback);
        }
        });
    };

    const data = [...this.treeData]; // Find dragObject

    let dragObj;
    loop(data, dragKey, (item, index, arr) => {
        arr.splice(index, 1);
        dragObj = item;
    });

    if (!info.dropToGap) {
        // Drop on the content
        loop(data, dropKey, item => {
        item.children = item.children || []; /// where to insert 示例添加到头部,可以是随意位置

        item.children.unshift(dragObj);
        });
    } else if ((info.node.children || []).length > 0 && // Has children
    info.node.expanded && // Is expanded
    dropPosition === 1 // On the bottom gap
    ) {
        loop(data, dropKey, item => {
        item.children = item.children || []; // where to insert 示例添加到头部,可以是随意位置

        item.children.unshift(dragObj);
        });
    } else {
        let ar = [];
        let i = 0;
        loop(data, dropKey, (_item, index, arr) => {
        ar = arr;
        i = index;
        });

        if (dropPosition === -1) {
        ar.splice(i, 0, dragObj);
        } else {
        ar.splice(i + 1, 0, dragObj);
        }
    }
    this.treeData=data
},
  • 2
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值