From a3f357e8a60443b74b64c7479113c68eb35ce1f5 Mon Sep 17 00:00:00 2001 From: ZZJ <10913410+zzj2100@user.noreply.gitee.com> Date: 星期五, 15 七月 2022 19:44:57 +0800 Subject: [PATCH] 控制轮询 --- src/pages/library/components/baseList.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/library/components/baseList.vue b/src/pages/library/components/baseList.vue index 3062d4d..9a70af5 100644 --- a/src/pages/library/components/baseList.vue +++ b/src/pages/library/components/baseList.vue @@ -197,14 +197,14 @@ await this.BaseManageData.querySyncTables(); this.syncTableList = this.BaseManageData.syncTables; if (typ) { - this.clickLast(typ); + this.$emit("getList"); } else { this.defaultShow(); } await this.BaseManageData.queryLocalTables(); this.localTableList = this.BaseManageData.localTables; if (typ) { - this.clickLast(typ); + this.$emit("getList"); } else { this.defaultShow(); } -- Gitblit v1.8.0