fix: 开启高级筛选后-表格基础筛选条件清空选中
This commit is contained in:
parent
aebfa5b17a
commit
9065ef4eb9
|
@ -1007,6 +1007,18 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.notShowTableFilter,
|
||||||
|
(val: boolean) => {
|
||||||
|
if (val) {
|
||||||
|
// 表格基础筛选条件清空选中
|
||||||
|
currentColumns.value.forEach((column) => {
|
||||||
|
column.filterCheckedList = [];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
initColumn,
|
initColumn,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue