当前位置:   article > 正文

开发记录】vue3实现列表拖拽排序,如何阻止放下后,元素回落?_vue3拖拽排序

vue3拖拽排序

一、问题描述

写了一个列表的拖拽排序,但遇到一个问题,就是拖拽放下后,html元素总会有一个回落的默认效果,这个会影响排序效果。
在这里插入图片描述

二、解决

其实,最后解决的办法,也很简单,就是在dragover事件处理中,去除默认,也就是e.preventDefault();

 const onDragOver = (e: any, index: number) => {
    e.preventDefault();
    // ....
 }
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

三、最后,记录一下完整的代码实现

<template>
  <div>
    <div class="card-list">
      <div
        class="card-item"
        :class="{'drag-over': dragOverIndex === index, 'active': dragData.index == index}"
        v-for="(item, index) in dataList"
        :key="item.cocosData.id"
        :id="item.cocosData.id"
        draggable="true"
        @dragstart.stop="onDragStart($event, index)"
        @dragover.stop="onDragOver($event, index)"
        @dragend.stop="onDragend"
      >
        <span>{{ item }}</span>
      </div>
    </div>
  </div>
</template>

<script lang="ts">
import { ref } from "vue";

export default defineComponent({
    name: "DragSort",
    setup(props) {
        const dataList = ref<string[]>([
            "字母A",
            "字母B",
            "字母D",
            "p",
        ]);
        
        const dragData = ref<any>({});
        const onDragStart = (e: any, index: number) => {
          dragData.value = {
            index,
          }
        }
        const dragOverIndex = ref(-1);
        const onDragOver = (e: any, index: number) => {
          e.preventDefault();
          if (dragData.value.index != index) {
            dragOverIndex.value = index;
          } else {
            dragOverIndex.value = -1;
          }
        }
        const onDragend = (e: any) => {
          e.preventDefault();
          const dragIndex = dragData.value.index;
          // console.log('onDragend', dragIndex, dragOverIndex.value);
          if (dragIndex != dragOverIndex.value && dragOverIndex.value != -1) {
            const dragItem = dataList[dragIndex];
            // console.log('dragItem', dragItem);
            if (dragOverIndex.value > dragIndex) {
              dataList.splice(dragOverIndex.value + 1, 0, dragItem);
              dataList.splice(dragIndex, 1);
            } else {
              dataList.splice(dragIndex, 1);
              dataList.splice(dragOverIndex.value, 0, dragItem);
            }
          }
          dragOverIndex.value = -1;
          dragData.value = {};
        }
        
        return {
          dataList,
          onDragStart,
          onDragOver,
          dragOverIndex,
          onDragend,
          dragData,
        };
    },
});

</script>

<style lang="less" scoped>
.card-list {
  margin-top: 10px;
  .card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    position: relative;
    &.active {
      background-color: #f2f2f2;
    }
    &.drag-over {
      background-color: #ddd;
      border: 1px solid #aaa;
    }
    span {
      cursor: pointer;
    }
  }
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102

四、最后

欢迎各位来用下我用了近2年,搞的一款网页编辑器,一定会让你感到惊讶的,哈哈!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/998144
推荐阅读
相关标签
  

闽ICP备14008679号