fix: 开启高级筛选后-表格基础筛选条件清空选中

This commit is contained in:
teukkk 2024-11-19 14:36:40 +08:00 committed by Craftsman
parent aebfa5b17a
commit 9065ef4eb9
1 changed files with 12 additions and 0 deletions

View File

@ -1007,6 +1007,18 @@
} }
); );
watch(
() => props.notShowTableFilter,
(val: boolean) => {
if (val) {
//
currentColumns.value.forEach((column) => {
column.filterCheckedList = [];
});
}
}
);
defineExpose({ defineExpose({
initColumn, initColumn,
}); });