Vue实现table列表项上下移动的示例代码
作者:小猫儿
本文主要介绍了Vue实现table列表项上下移动的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
结合Element组件,scope中有三个参数(row,cow,$index)分别表示行内容、列内容、以及此行索引值,
table上绑定数组 :data=“newsList”。
上移和下调两个按钮,并绑定上点击函数,将此行的索引值(scope.$index)作为参数:
<template> <el-table :data="newsList"> <el-table-column type="index" label="序号" width="50"></el-table-column> <el-table-column prop="title" label="文章标题" min-width="300" ></el-table-column> <el-table-column prop="descript" label="文章描述" min-width="300" ></el-table-column> <el-table-column label="操作(素材排序)" > <template slot-scope="scope"> <el-button size="mini" type='text' @click.stop="sortUp(scope.$index, scope.row)">向上↑ </el-button> <el-button size="mini" type='text' @click.stop="sortDown(scope.$index, scope.row)">向下↓</el-button> </template> </el-table-column> </el-table> </template>
上移下移函数,此处的坑,是vue视图更新!!!
直接使用下面这种方式是错误的,虽然tableList的值变了,但是不会触发视图的更新:
upFieldOrder (index) { let temp = this.tableList[index-1]; this.tableList[index-1] = this.tableList[index] this.tableList[index] = temp },
正确方法:
// 上移按钮 sortUp (index, row) { if (index === 0) { this.$message({ message: '已经是列表中第一个素材!', type: 'warning' }) } else { let temp = this.newsList[index - 1] this.$set(this.newsList, index - 1, this.newsList[index]) this.$set(this.newsList, index, temp) } },
同理,下移函数,
// 下移按钮 sortDown (index, row) { if (index === (this.newsList.length - 1)) { this.$message({ message: '已经是列表中最后一个素材!', type: 'warning' }) } else { let i = this.newsList[index + 1] this.$set(this.newsList, index + 1, this.newsList[index]) this.$set(this.newsList, index, i) } }
最后贴出效果图:
到此这篇关于Vue实现table列表项上下移动的示例代码的文章就介绍到这了,更多相关Vue table列表项上下移动内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!