element组件库解决table表格复选框选中后被清空问题

1.el-table 标签上添加 :row-key=“getRowKey”
行数据的 Key,用来优化 Table 的渲染;在使用 reserve-selection 功能与显示树形数据时,该属性是必填的。类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function。
getRowKey(row) {
// console.log(’================:’, JSON.stringify(row))
return row.id
},

2.el-table-column 标签上 添加: :reserve-selection=“true”
仅对 type=selection 的列有效,类型为 Boolean,为 true 则会在数据更新之后保留之前选中的数据(需指定 row-key)

<el-table id=“el-table” size=“small” @selection-change=“selectChange” :data=“userData” stripe ref=“multipleTable”
highlight-current-row v-loading=“loading” border element-loading-text=“拼命加载中” :row-key=“getRowKey”
style=“width: 150%;”>

{{(formInline.pageNo - 1) * formInline.pageSize + scope.$index + 1}}
上一篇:PCA Biplot含义


下一篇:django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. 解决方法