Element ui表格行、列拖拽

本文介绍了如何在Vue项目中通过vuedraggable或sortablejs插件实现表格的行列拖拽功能。首先通过npm安装这两个插件,然后在页面中引入并配置。对于行拖拽,设置row-key并监听拖拽事件更新数据;对于列拖拽,利用Sortable创建实例并处理拖拽结束时的列顺序更新。示例代码展示了具体的实现步骤。
摘要由CSDN通过智能技术生成

1、首先安装vuedraggable插件或直接安装sortablejs

npm i -S vuedraggable
npm i sortablejs --save

2、更多属性配置参考中文文档:vue.draggable中文文档 - itxst.com

3、在需要配置的页面引入

import Sortable from 'sortablejs';

4、要点:

4.1、先找到拖拽元素的父容器

4.2、行拖拽:在 el-table 标签中,根据行的内容指定行的唯一标识  row-key="id"

4.3、列拖拽:额外定义两个数组,分别存储拖拽前的列顺序和拖拽后的列顺序

完整代码

<template>
    <div class="draggable" style="padding: 20px">
        <el-table
                row-key="id"
                :data="dataList"
                style="width: 100%"
                border
        >
            <el-table-column
                    v-for="(item,index) in oldList"
                    :key="`col_${index}`"
                    :prop="newList[index].prop"
                    :label="item.label"
                    align="center"
            >
            </el-table-column>
        </el-table>
    </div>
</template>
<script>
    import Sortable from 'sortablejs';
    export default {
        mounted() {
            this.oldList = JSON.parse(JSON.stringify(this.tableConfig.tableItems))
            this.newList = JSON.parse(JSON.stringify(this.tableConfig.tableItems))
            this.columnDrop()
            this.rowDrop()
        },
        data() {
            return {
                oldList: [],
                newList: [],
                dataList: [
                    {
                        id:1,
                        name:'温度',
                        type:'℃',
                        value:10,
                    },
                    {
                        id:2,
                        name:'PM2.5',
                        type:'ug/m3',
                        value:20,
                    },
                    {
                        id:3,
                        name:'PM10',
                        type:'ug/m3',
                        value:30,
                    },
                ],
                tableConfig: {
                    tableItems: [
                        {
                            label: '名称',
                            prop: 'name',
                        },
                        {
                            label: '类型',
                            prop: 'type',
                        },
                        {
                            label: '值',
                            prop: 'value',
                        }
                    ]
                }
            }
        },
        methods: {
            // 行拖拽
            rowDrop() {
                // 此时找到的元素是要拖拽元素的父容器
                const tbody = document.querySelector('.draggable .el-table__body-wrapper tbody');
                const _this = this;
                Sortable.create(tbody, {
                    //  指定父元素下可被拖拽的子元素
                    draggable: ".draggable .el-table__row",
                    onEnd({newIndex, oldIndex}) {
                        const currRow = _this.dataList.splice(oldIndex, 1)[0];
                        _this.dataList.splice(newIndex, 0, currRow);
                    }
                });
            },
            // 列拖拽
            columnDrop() {
                const wrapperTr = document.querySelector('.draggable .el-table__header-wrapper tr');
                this.sortable = Sortable.create(wrapperTr, {
                    animation: 180,
                    delay: 0,
                    onEnd: evt => {
                        const oldItem = this.newList[evt.oldIndex];
                        this.newList.splice(evt.oldIndex, 1);
                        this.newList.splice(evt.newIndex, 0, oldItem);
                    }
                });
            }
        }
    }
</script>
<style scoped>
</style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值