需求1,当点击多选的时候,不止选中父级,父级下的子项也需要选中
父子间的选框,类似全选框一样,可以呈现 indeterminate 状态
同时点击父级选框,可以对子项进行全选/全不选
更改子级选框,也能联动改变父级选框的状态
并且以上联动效果支持在翻页的时候保留
应该如何实现?
需求1,当点击多选的时候,不止选中父级,父级下的子项也需要选中
父子间的选框,类似全选框一样,可以呈现 indeterminate 状态
同时点击父级选框,可以对子项进行全选/全不选
更改子级选框,也能联动改变父级选框的状态
并且以上联动效果支持在翻页的时候保留
应该如何实现?
首先,你需要在父子关系的表格数据中增加一个字段,表示父级和子级之间的关系。然后,你可以使用递归组件来处理父子级选框的联动。
以下是一个基本的实现思路:
children
字段,该字段是一个数组,存储了该项的所有子级数据项。以下是一个简单的示例代码:
<template>
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="date" label="日期" width="180"></el-table-column>
<el-table-column prop="name" label="姓名" width="180"></el-table-column>
<el-table-column prop="address" label="地址"></el-table-column>
<template slot-scope="scope">
<div @click="handleRowClick(scope.$index)">
<input type="checkbox" :checked="scope.row.selected">
</div>
<el-table v-if="scope.row.children" :data="scope.row.children" style="width: 100%">
<template slot-scope="scope">
<div @click="handleChildRowClick(scope.$index, scope.row)">
<input type="checkbox" :checked="scope.row.selected">
</div>
</template>
</el-table>
</template>
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [
{ date: '2016-05-02', name: '王小虎', address: '上海市普陀区金沙江路 1518 弄', children: [{ date: '2016-05-03', name: '王小明', address: '上海市普陀区金沙江路 1517 弄', selected: false }, { date: '2016-05-04', name: '王小红', address: '上海市普陀区金沙江路 1519 弄', selected: false }] },
{ date: '2016-05-05', name: '王小虎', address: '上海市普陀区金沙江路 1520 弄', children: [{ date: '2016-05-06', name: '王小明', address: '上海市普陀区金沙江路 1521 弄', selected: false }, { date: '2016-05-07', name: '王小红', address: '上海市普陀区金沙江路 1522 弄', selected: false }] }
]
}
},
methods: {
handleRowClick(index) {
const row = this.tableData[index]
if (row.children) {
row.children.forEach(child => child.selected = row.selected)
}
},
handleChildRowClick(childIndex, childRow) {
const parentRow = this.$parent.$parent.$index // get parent row index from grandparent scope
const parentRowChildren = this.tableData[parentRow].children // get parent row children from parent scope
parentRowChildren[childIndex].selected = childRow.selected // update the selected state of the clicked child row and the others are inverse selected state of clicked one
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答5.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
1 回答3.4k 阅读✓ 已解决
https://codesandbox.io/p/sandbox/agitated-merkle-qmhmck?file=...
看看这是不是你想要的,如果是的话,按照下面步骤来:
el-table
加上row-key
属性,row-key
的值为你的数据唯一标示名,一般会是id
。column
加上reserve-selection
属性,不用写值。