1.修改table模块,改回原有逻辑
This commit is contained in:
2025-03-25 15:34:10 +08:00
parent 988c2365de
commit 58d3b5a933
2 changed files with 18 additions and 16 deletions
@@ -95,14 +95,12 @@
watch(
props,
(v, o) => {
if (JSON.stringify(v) !== JSON.stringify(o)) {
nextTick(() => {
pageSize.value = 10;
current.value = 1;
getRecords();
});
}
() => {
nextTick(() => {
pageSize.value = 10;
current.value = 1;
getRecords();
});
},
{
immediate: true,