取消elementUI中table的选中状态和勾选状态赋值

取消elementUI中table的选中状态和勾选状态赋值_第1张图片

一、取消所有选中
1、表格上绑定ref
2、清空用户选中数据

this.$refs.loopRef.clearSelection()

二、勾选状态赋值
获取数据,flag为true则是选中状态,并将前面勾选框设为选中状态

this.listData.forEach(item=> {
	if(row.flag==1){
	    this.$refs.loopRef.toggleRowSelection(item)
   }
})

你可能感兴趣的:(element,elementui,前端,javascript)