美文网首页Vue
Vue<表格拖拉拽(编辑,删除)>

Vue<表格拖拉拽(编辑,删除)>

作者: 誰在花里胡哨 | 来源:发表于2019-06-03 19:48 被阅读44次

此文章是对之前表格拖拉拽的深入了解,增加了编辑和删除功能,感觉以后能用到,喜欢的可以小伙伴可以看下

效果图

tuozhuai2.gif

代码如下

(直接写好的demo,可以直接复制)

<template>
  <div class="overall">
    <!-- @sort-start 排序开始时被触发  发出: { event: MouseEvent, node: HTMLElement, index: number, collection: string }-->
    <!-- @sort-move 在排序过程中移动鼠标时触发 发出: { event } -->
    <!-- @sort-end 排序结束时触发 发出: { event, newIndex, oldIndex, collection } -->
    <!-- @input 排序后以新排序的列表结束后触发 发出: Array -->
    <SlickList
      :lockToContainerEdges="true"
      lockOffset="0%"
      axis="xy"
      lockAxis="xy"
      :distance="10"
      v-model="items"
      @input="getChangeLists"
      @sort-start="shouldCancelStart"
      id="box"
    >
      <SlickItem class="tab" v-for="(i,index) in items" :key="index" :index="index" >
        <el-button  type="text" class="close" @click="close(index)"></el-button>
        <el-button  type="text" class="edit" @click="edit(i)"></el-button>
        <div class="title">{{i.name}}</div>
      </SlickItem>
    </SlickList>
  </div>
</template>

<script>
import { SlickList, SlickItem } from "vue-slicksort";
export default {
  components: {
    SlickList,
    SlickItem
  },
  data() {
    return {
      maskShow:false,
      inputShow:false,
      items: [
        {name:"1-1"},
        {name:"1-2"},
        {name:"1-3"},
        {name:"1-4"},
        {name:"1-5"},
        {name:"1-6"},
        {name:"1-7"},
        {name:"1-8"},
        {name:"1-9"},
        {name:"1-10"},
        {name:"1-11"},
        {name:"1-12"},
        {name:"1-13"},
        {name:"1-14"},
        {name:"1-15"}
      ]
    };
  },
  methods: {
    //  拖拽完成后返回被打乱后的顺序
    getChangeLists(vals) {
      console.log(vals);
      console.log(this.items);
    },
    //拖拽前执行的方法
    shouldCancelStart(e) {
      // let newItems = this.items.splice(e.index,1)
      // console.log( newItems)
    },
    //删除并关闭该tab
    close(e) {
     this.$confirm('请确定删除(删除后将无法恢复)!', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          let newItems = this.items.splice(e, 1);
          this.$message({
            type: 'success',
            message: '删除成功!'
          });
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });          
        });
    },
    //编辑方法
    edit(e){
      this.$prompt('请输入修改内容', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          inputPlaceholder:'请输入1 - 10位的内容',
          inputPattern: /^[A-Za-z0-9]{1,10}$/,
          inputErrorMessage: '命名格式不正确'
        }).then(({ value }) => {
         e.name = value
          this.$message({
            type: 'success',
            message: '修改为: ' + value
          });
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '取消输入'
          });       
        });
    },
    //确定方法,执行下一步
    confirm(){
      this.maskShow = false;
      this.inputShow = false;
    }
  }
};
</script>

<style lang="scss" scoped>
@import "../../assets/css/colour.scss";
#box {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  width: 600px;
  max-height: 90vh;
  margin: 0 auto;
  background-color: #dfdbdb;
}
.tab {
  cursor: pointer;
  text-align: center;
  width: 200px;
  background-color: #fff;
  box-sizing: border-box;
  user-select: none; //不允许用户选中文字
  color: #333;
  font-weight: 400;
  position: relative;
  box-shadow: 1px 1px 2px #ccc;
  &:hover .edit{
   opacity: 1;
   transform: scale(1)
  }
  &:hover .close{
   opacity: 1;
   transform: scale(1)
  }
  .title {
    height: 50px;
    width: 100%;
    color: rgba(11, 145, 71, 0.658);
    font-weight: bold;
    line-height: 50px;
  }
  .edit,
  .close {
    transition: 0.5s;
    width: 10px;
    height: 10px;
    padding: 0 !important;
    position: absolute;
    top: 5px;
    border-radius: 50%;
    box-shadow: 1px 1px 2px #ccc;
    opacity: 0;
    transform: scale(0);
    cursor: pointer;
    &:hover {
      box-shadow: 0px 0px 0px #ccc;
    }
  }
  .edit {
    right: 25px;
    background: rgb(19, 230, 114);
  }
  .close {
    right: 10px;
    background: rgb(248, 121, 121);
  }
}

#mask {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  .mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
  }
  .hint-box {
      width: 300px;
      padding: 30px;
      box-sizing: border-box;
      background: white;
    font-size: 15px;
    .content {
      
    }
    .btn{
      margin-top: 80px;
      text-align: right;
      box-sizing: border-box;
      cursor: pointer;
      span{
           padding: 10px 15px;
          background: $base;
          color: white;
          
      }
    }
  }
}
</style>

希望各位用到的人点个赞!!哈哈哈~~

相关文章

  • Vue<表格拖拉拽(编辑,删除)>

    此文章是对之前表格拖拉拽的深入了解,增加了编辑和删除功能,感觉以后能用到,喜欢的可以小伙伴可以看下 效果图 代码如...

  • Vue<表格拖拉拽>

    在网上找了很多资源和介绍,最后发现一个插件(vue-slicksort)挺好用的,所以就拿来练练,出个效果具体参考...

  • 多个工作表内容合并

    数据--新建查询--从文件--选中excle表格--选择多项--添加sheet表格内容--编辑--删除重复项--追...

  • RecyclerView拖拉拽

    RecyclerView拖拉拽,主要是使用RecyclerView结合ItemTouchHelper来实现的。 首...

  • 拖拉拽例子

    例子 相关知识 draggable="true", 配置属性可以拖拉拽 在拖动目标上触发事件ondragstart...

  • 零基础学Axure8-表格的运用

    知识点: 1.编辑表格:添加/删除行、列; 2.编辑表格的样式:字体样式,背景,边距,行距; 3.在excel表中...

  • ios表视图控制器2

    表格的编辑模式(删除、增加、移动) 预备步骤 一定要开启表视图的编辑状态 才会出现红色的删除、绿色的增加、灰色的移...

  • UITableView 编辑模式

    UITableView 编辑模式 相关方法 UITableView 插入、删除和移动表格的行和分区 (Insert...

  • 动态表格之查看、删除、编辑

    页面原型 table的动态生成代码: 添加查看、删除、编辑的关键代码: 原文作者:祈澈姑娘技术博客:https:/...

  • Axure8.0之中继器实现表格

    表格要实现的功能 点击编辑按钮,进入编辑状态 点击保存按钮,更新当前行数据 点击删除按钮,删除当前行数据 某一行右...

网友评论

    本文标题:Vue<表格拖拉拽(编辑,删除)>

    本文链接:https://www.haomeiwen.com/subject/jmshxctx.html