element-plus el-table 多选数据回显
时间: 2023-11-15 08:58:25 浏览: 1222
在使用 element-plus 的 el-table 进行多选时,可以通过绑定一个对象来实现数据回显。具体实现方法如下:
1. 在获取表格数据时,将数据转化为一个以 id 为键,整个数据对象为值的字典对象。
2. 在获取回显数据时,将数据转化为一个以 deviceId 为键,整个数据对象为值的字典对象。
3. 在 el-table 的 @select 事件中,将选中的数据对象存入回显数据字典对象中。
4. 在 el-table 的 @select-all 事件中,遍历所有数据对象,将其存入回显数据字典对象中。
5. 在 el-table 的 :row-selected 事件中,根据回显数据字典对象中是否存在当前数据对象的 id 或 deviceId,来判断当前数据对象是否应该被选中。
具体代码实现可以参考以下示例:
```
<template>
<el-table
ref="tableRef"
:data="tableData"
@select="handleSelect"
@select-all="handleSelectAll"
:row-selected="isRowSelected"
row-key="id"
>
<el-table-column type="selection" width="55" />
<el-table-column type="index" label="序号" width="150" />
<el-table-column prop="name" label="电厂名称" />
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [], // 表格数据
selectedData: {}, // 回显数据
}
},
methods: {
// 获取表格数据
async fetchData() {
const res = await fetchTableData()
this.tableData = res.data.reduce((dic, item) => {
dic[item.id] = item
return dic
}, {})
},
// 获取回显数据
async fetchSelectedData() {
const res = await fetchSelectedData()
this.selectedData = res.data.reduce((dic, item) => {
dic[item.deviceId] = item
return dic
}, {})
},
// 处理单个选中事件
handleSelect(selection, row) {
this.$set(this.selectedData, row.deviceId, row)
},
// 处理全选事件
handleSelectAll(selection) {
Object.values(this.tableData).forEach(row => {
this.$set(this.selectedData, row.deviceId, row)
})
},
// 判断行是否被选中
isRowSelected(row) {
return !!this.selectedData[row.id || row.deviceId]
},
},
mounted() {
this.fetchData()
this.fetchSelectedData()
},
}
</script>
```
阅读全文