el-table中分页查询或编辑时保留复选框选中状态。

html中

// el-table 要加上 row-key;el-talble-column 要加上 :reserve-selection='true'

  
  
  
  

js中

// 编辑
edit(obj){
 obj.ids.map(id =>{
  this.dataList.map(row=>{
    if(row.id==id){
       this.$refs.pageTable.toggleRowSelection(row,true) // 选中上次选中的数据
     }
   }
 }
}

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