2021-01-20

el-table 换页保持选中

<el-table
      :row-key="(row) => row.accountId"
      ref="multipleTable"
      :data="tableData"
      @selection-change="handleSelectionChange"
    >
      <el-table-column type="selection" :reserve-selection="true" width="55">
      </el-table-column>
 	...........
    </el-table>
  1. 首先在el-table加上行唯一id :row-key="(row) => row.accountId" 注:accountId不是指定,是根据该行唯一值
  2. 在选项列中加上 :reserve-selection=“true”
    3.清楚已保存的默认选中状态
 this.$refs.multipleTable.clearSelection();
上一篇:js复制文本到剪贴板,兼容ios,Android


下一篇:那些暖人心却鲜为人知的CSS属性(转载)