勾选父节点时,不影响字节点的选中状态。先上效果如图:
勾选一个字节的,父节点不是半选状态,勾选了父节点,子节点没有被选中。
借助el-table的@select回调事件,而不是借助@selection-change。因为selection-change在我们手动设置表格选中或者非选中时,会触发这个事件回调,不利于我们判断。而select当用户手动勾选数据行的 Checkbox 时才触发。
第一步:先定义selectedIdList一个数组,用于存储我们选中的行目id
第二步:实现select的回调函数
第三步:借住toggleRowSelection手动设置行目的选中状态
const state = reactive({
selectedIdList: []
})
// 表格手动勾选
const select = (row: any) => {
// 判断该节点之前是否选中
if (state.selectedIdList.indexOf(row.id) > -1) {
// 选中,则取消选中,从selectedIdList中删除
state.selectedIdList.map((item: any, index: number) => {
if (item == row.id) {
state.selectedIdList.splice(index, 1);
}
});
} else {
// 未选中,则选中,添加到selectedIdList中
state.selectedIdList.push(row.id);
}
treeForeach(row);
};
// 遍历节点,设置选中状态
const treeForeach = (tree: any) => {
// 选中的节点是否是父节点
if (tree.children && tree.children.length > 0) {
// 是
tree.children.forEach((item: any) => {
// 判断该节点之前是否选中
if (state.selectedIdList.indexOf(item.id) > -1) {
// 子节点原先被选中
tableRef.value.multipleTableRef!.toggleRowSelection(item, true);
} else {
// 子节点原先未选中
tableRef.value.multipleTableRef!.toggleRowSelection(item, false);
}
treeForeach(item);
});
}
};