From 8b92b3f27005f9065b98427fc4d0ad99a105b930 Mon Sep 17 00:00:00 2001 From: yaojn Date: Fri, 11 Apr 2025 10:41:20 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=B7=A1=E6=A3=80-=E9=80=89=E6=8B=A9=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E5=B1=82=E8=BF=87=E6=BB=A4=E6=9C=80=E6=96=B0=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E5=88=97=E8=A1=A8=EF=BC=8C=E9=87=8D=E6=96=B0=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E4=B8=8A=E7=BA=A7=E5=BA=94=E7=94=A8=E5=B1=82=EF=BC=8C=E6=9C=80?= =?UTF-8?q?=E6=96=B0=E9=97=AE=E9=A2=98=E5=88=97=E8=A1=A8=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E5=88=B7=E6=96=B0=20=20=20-=20[=E5=85=B3=E8=81=94]#[1396467598?= =?UTF-8?q?589952]=E5=BA=94=E7=94=A8=E5=B7=A1=E6=A3=80-=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E5=B1=82=E8=BF=87=E6=BB=A4=E6=9C=80=E6=96=B0?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E5=88=97=E8=A1=A8=EF=BC=8C=E9=87=8D=E6=96=B0?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E4=B8=8A=E7=BA=A7=E5=BA=94=E7=94=A8=E5=B1=82?= =?UTF-8?q?=EF=BC=8C=E6=9C=80=E6=96=B0=E9=97=AE=E9=A2=98=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E5=88=B7=E6=96=B0=20http://192.168.0.96:8090?= =?UTF-8?q?/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1396?= =?UTF-8?q?467598589952?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../application/latest-questions-manage.vue | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/views/pages/inspect/application/latest-questions-manage.vue b/src/views/pages/inspect/application/latest-questions-manage.vue index 7d9d840a..70c4f871 100644 --- a/src/views/pages/inspect/application/latest-questions-manage.vue +++ b/src/views/pages/inspect/application/latest-questions-manage.vue @@ -647,6 +647,12 @@ export default { }, closeRuleOfThresholdDialog() { this.isShowRuleThresholdDialog = false; + }, + updateInitData() { + this.expandCollapseIdList = []; + this.isExpandCollapse = true; + this.isBack = false; + this.initData(); } }, filter: {}, @@ -672,19 +678,11 @@ export default { }, watch: { appModuleId(id) { - if (id) { - this.expandCollapseIdList = []; - this.isExpandCollapse = true; - this.isBack = false; - this.initData(); - } + this.updateInitData(); }, appSystemId(id) { if (id && this.$utils.isEmpty(this.appModuleId)) { - this.expandCollapseIdList = []; - this.isExpandCollapse = true; - this.isBack = false; - this.initData(); + this.updateInitData(); } } } -- Gitee