使用sortablejs对elementUi的table进行排序

3 篇文章 1 订阅
2 篇文章 0 订阅

安装

npm安装

$ npm install sortablejs --save

bower安装

 bower install --save sortablejs

直接script引入

<script src="../../js/Sortable.min.js"></script>

使用

html代码

<template>
    <div class="landingPageList">
      <el-table :data="tableData"
      border
      row-key="id">
        <el-table-column
          align="center"
          label="顺序">
          <template slot-scope="scope">
            <el-tag>
              {{scope.$index + 1}}
            </el-tag>
          </template>
        </el-table-column>
        <el-table-column
          align="center"
          label="图片样式">
          <template slot-scope="scope">
            <img :src="scope.row.image_url" alt="" style="width: 40px;height: 40px;">
          </template>
        </el-table-column>
        <el-table-column
          align="center"
          label="跳转链接">
          <template slot-scope="scope">
            {{scope.row.spread_link}}
          </template>
        </el-table-column>
      </el-table>
    </div>
</template>

js代码

<script>
  import Sortable from 'sortablejs'
  export default {
    props: {
    },
    data() {
      return {
        tableData: [
          {
            image_url: '111',
            spread_link: 'www.baidu.com'
          },
          {
            image_url: '222',
            spread_link: 'www.baidu.com'
          }
        ]
      };
    },
    mounted() {
      // 表格行拖拽
      this.rowDrop()
      // 表格列拖拽
      // this.columnDrop()
    },
    methods: {
      rowDrop() {
        const tbody = document.querySelector('.el-table__body-wrapper tbody')
        const _this = this
        var newArr = JSON.parse(JSON.stringify(_this.tableData))
        Sortable.create(tbody, {
          onEnd({ newIndex, oldIndex }) {
            const currRow = newArr.splice(oldIndex, 1)[0]
            newArr.splice(newIndex, 0, currRow)
            // 重新排序完的表格数据
            _this.tableData = []
            _this.$nextTick(function () {
              _this.tableData = newArr
            })
          }
        })
      },
      //列拖拽
      // columnDrop() {
      //   const wrapperTr = document.querySelector('.el-table__header-wrapper tr')
      //   this.sortable = Sortable.create(wrapperTr, {
      //     animation: 180,
      //     delay: 0,
      //     onEnd: evt => {
      //       const oldItem = this.dropCol[evt.oldIndex]
      //       this.dropCol.splice(evt.oldIndex, 1)
      //       this.dropCol.splice(evt.newIndex, 0, oldItem)
      //     }
      //   })
      // }
    }
  };
</script>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值