element plus e-table表格中使用多选,当翻页时已选中的数据丢失

摘要:

点击第一页选中两个,再选择第二页,选中,回到第一页,之前选中的要保留!


element ui table

解决办法: :row-key="getRowKeys" (写在el-table中)

bash 复制代码
methods中声明 getRowKeys()方法 
getRowKeys(row) {
  return row.id
},

:reserve-selection="true" (写在el-table-column中type为select的行中)

bash 复制代码
<el-table-column type="selection" :reserve-selection="true" width="44px" />

因为表格分页,点击会刷新第一页的数据的,只会加载第二页的数据,前面页面的数据是拿不到的,上面的还是不行的话加入@selection-change,当选择项发生变化时会触发该事件回调selection!

终极方法:

使用toggleRowSelection方法把数据硬塞进去

bash 复制代码
this.$nextTick(() => {
  // this.multipleSelection:第一页和第二页选中的数据数组, this.tableList是表格数据
   if (this.multipleSelection.length) {
       // this.$refs.elTable 当前表格ref
       this.$refs.elTable.clearSelection()

       this.multipleSelection.forEach(row => {
           const selectedRow = this.tableList.find(item => item.id === row.id)
           if(selectedRow){
               // 当前页(第一页)需要被选中的数据使其选中
               this.$refs.elTable.toggleRowSelection(selectedRow, true);
           }else{
               // 不在当前页(第二页)的数据,也硬塞到@selection-change的参数中,这时当你在第一页选中其他数据时,selection-change的参数也会带着第二页的数据
               this.$refs.elTable.toggleRowSelection(row, true);
           }
       })
   }
})

或者获取所有数据回来就更加好处理了!记录选中的,但是最傻了!

bash 复制代码
mounted(){
	init()
},
async init(){
	await setCheck()
	await getTableList()
},
// 这里是请求接口获取表格分页数据
getTableList(){
	// this.tableList = 
},
// 这里获取所有的数据
getAllTableList(){
	// 请求获取所有的数据,然后return出去
	// return allList
},
// 设置选中
async setCheck() {
	const allTableList = await getAllTableList()
	allTableList.forEach((item) => {
		if(ids.has(item.id)){
			this.$refs.elTable.toggleRowSelection(item, true)
		}
	})
}
相关推荐
奇舞精选29 分钟前
在 Chrome 浏览器里获取用户真实硬件信息的方法
前端·chrome
热忱11282 小时前
elementUI Table组件实现表头吸顶效果
前端·vue.js·elementui
林涧泣2 小时前
【Uniapp-Vue3】setTabBar设置TabBar和下拉刷新API
前端
Rhys..2 小时前
Jenkins pipline怎么设置定时跑脚本
运维·前端·jenkins
易林示2 小时前
chrome小插件:长图片等分切割
前端·chrome
w(゚Д゚)w吓洗宝宝了2 小时前
单例模式 - 单例模式的实现与应用
开发语言·javascript·单例模式
zhaocarbon2 小时前
VUE elTree 无子级 隐藏展开图标
前端·javascript·vue.js
浏览器爱好者3 小时前
如何在AWS上部署一个Web应用?
前端·云计算·aws
xiao-xiang3 小时前
jenkins-通过api获取所有job及最新build信息
前端·servlet·jenkins
C语言魔术师3 小时前
【小游戏篇】三子棋游戏
前端·算法·游戏