This commit is contained in:
2025-11-14 14:21:51 +08:00

View File

@@ -153,10 +153,8 @@ const vxeTableRef = ref<any>();
const tableSearchRef = ref<any>();
const searchList = ref<any>(props.searchItems);
watch(() => props.params, (val: any, oldVal: any) => {
if (JSON.stringify(val) !== JSON.stringify(oldVal)) {
resetFun(val);
}
watch(() => props.params, (val: any) => {
resetFun(val);
}, { deep: true });
watch(() => props.searchItems, (val) => {