大家好,我是小佑@小佐https://blog.csdn.net/Smell_rookie,是一名页面仔工程师,我会不定时在CSDN更新我的博客,有兴趣的可以点个关注来逛逛我的主页。需求:有时我们想要做成这么一个效果——对ele的表格实现行排...
大家好,我是小佑@小佐https://blog.csdn.net/Smell_rookie,是一名页面仔工程师,我会不定时在CSDN更新我的博客,有兴趣的可以点个关注来逛逛我的主页。
需求:有时我们想要做成这么一个效果——对ele的表格实现行排序,可以拖动!
借助sortable我们可以完成上述需求。
安装sortablejs
npm install sortable.js --save 或 yarn add sortable
引入并使用 在需要使用拖拽的.vue页面引入sortablejs 也可以全局的main.js中引入,挂载到vue跟实例中去。
import Sortable from 'sortablejs'
使用方法
mounted() {
this.rowDrop()
},
methods: {
//行拖拽
rowDrop() {
const tbody = document.querySelector('.el-table__body-wrapper tbody')
const _this = this
Sortable.create(tbody, {
onEnd({ newIndex, oldIndex }) {
const currRow = _this.tableData.splice(oldIndex, 1)[0]
_this.tableData.splice(newIndex, 0, currRow)
}
})
},
}
注意
需要为el-table指定row-key=“id”,标示每行数据的唯一性id可以根据你的数据替换成其他唯一性的数据
完整代码
<template>
<div>
<el-table :data="tableData" border width="100%" `row-key="id"` align="left">
<el-table-column width="50px">
<template slot-scope="scope">
<el-button type='text' v-show="scope.row.defaultValue === 1">默认</el-button>
</template>
</el-table-column>
<el-table-column width="60px" label="序号" type="index">
</el-table-column>
<el-table-column prop="dataKey" label="值"></el-table-column>
<el-table-column prop="dataValue" label="显示值"></el-table-column>
<el-table-column label="操作" min-width="100">
<template slot-scope="scope">
<el-popover placement="top" v-model="scope.row.visible">
<p>确定要删除当前内容?</p>
<div style="text-align: right; margin: 0">
<el-button size="mini" plain>取消</el-button>
<el-button type="primary" size="mini">确定</el-button>
</div>
<el-button size="mini" type="danger" slot="reference">删除</el-button>
</el-popover>
<el-button size="mini" type="primary">取消</el-button>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
import Sortable from 'sortablejs'
export default {
data() {
return {
tableData: [
{
id: 1,
dataKey: '值11',
dataValue: '显示值11'
},
{
id: 2,
dataKey: '值22',
dataValue: '显示值22'
},
{
id: 3,
dataKey: '值33',
dataValue: '显示值33'
},
{
id: 4,
dataKey: '值44',
dataValue: '显示值44'
},
],
}
},
mounted() {
this.rowDrop()
},
methods: {
//行拖拽
rowDrop() {
const tbody = document.querySelector('.el-table__body-wrapper tbody')
const _this = this
Sortable.create(tbody, {
onEnd({ newIndex, oldIndex }) {
const currRow = _this.tableData.splice(oldIndex, 1)[0]
_this.tableData.splice(newIndex, 0, currRow)
}
})
},
}
}
</script>
<style>
</style>
觉得有帮助的可以关注一下博主
沃梦达教程
本文标题为:vue+element使用sortable拖拽实现行排序
基础教程推荐
猜你喜欢
- Javascript Bootstrap的网格系统,导航栏和轮播详解 2023-08-11
- 在实战中可能碰到的几种ajax请求方法详解 2023-02-01
- Ajax发送和接收请求 2022-12-15
- uniapp开发微信小程序自定义顶部导航栏功能实例 2022-10-21
- HTML clearfix清除浮动讲解 2022-11-20
- JS滚动到顶部踩坑解决记录 2023-07-10
- cocos creator游戏实现loading加载页面,游戏启动加载动画 2022-10-29
- 关于Ajax跨域问题及解决方案详析 2023-02-23
- Ajax+smarty技术实现无刷新分页 2022-12-15
- 使用ajax跨域调用springboot框架的api传输文件 2023-02-23