vue使用elementui实现表格中上下移动功能
程序员文章站
2022-07-14 17:07:00
...
直接上代码。
<el-table :data='tableData' >
...
...
<el-table-column label="操作" align="center" width="140" >
<template slot-scope="scope">
<el-button type="text" @click="upMove(scope.$index,scope.row)">上移</el-button>
<el-button type="text" @click="upDown(scope.$index,scope.row)">下移</el-button>
</template>
</el-table-column>
</el-table>
export default{
methods:{
upMove(index, row) {
if (index <= 0) {
this.$message.error('不能继续向上移动')
} else {
const upData = this.tableData[index - 1]
this.tableData.splice(index - 1, 1)
this.tableData.splice(index, 0, upData)
}
},
upDown(index, scope) {
if (index === (this.tableData.length - 1)) {
this.$message.error('不能继续向下移动')
} else {
const downData = this.tableData[index + 1]
this.tableData.splice(index + 1, 1)
this.tableData.splice(index, 0, downData)
}
}
}
}
推荐阅读
-
vue使用elementui实现表格中上下移动功能
-
vue使用elementui实现表格中上下移动功能
-
vue+elementui 数据表格上下移动功能
-
基于Vue2.0+ElementUI实现表格翻页功能
-
使用Bootstrap + Vue.js实现表格的动态展示、新增和删除功能
-
Vue2.0+ElementUI+PageHelper实现的表格分页功能
-
vue使用ElementUI时导航栏默认展开功能的实现
-
怎样使用Vue+canvas实现移动端手写板功能
-
在不使用select的情况下vue怎么实现下拉框功能
-
vue + ElementUI 封装的公用表格table组件实现拖拽列表功能(Sortablejs)