The World of Remnant

el-table分页保留选择

设置row-key
<el-table-column
                  type="selection"
                  :reserve-selection="true"
                  width="55"
                >

补充:多选+保留分页选中的选到另一个table之后手动删除,怎么让el-table的选中也改变:

this.$refs.table.toggleRowSelection(row);

再补充,如果选到另一个table后row改变了,那只能用id遍历原来的选中列表拿到原始row:

let row;
      this.multipleSelection.map((iii) => {
        if (iii.goodsId === item.goodsId) {
          row = iii;
          return;
        }
      });