From 7d515e1dd5df717649cd6aa3242015ad193c2214 Mon Sep 17 00:00:00 2001 From: hyx Date: Fri, 22 Sep 2023 14:22:47 +0800 Subject: [PATCH] =?UTF-8?q?CN-1342=20fix:=E5=88=B7=E6=96=B0Link=20Monitor?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=8C=E5=A4=9A=E8=AF=B7=E6=B1=82relation/?= =?UTF-8?q?tab/list=E6=8E=A5=E5=8F=A3=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/Header.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/layout/Header.vue b/src/components/layout/Header.vue index 0d572e32..d35603f5 100644 --- a/src/components/layout/Header.vue +++ b/src/components/layout/Header.vue @@ -131,7 +131,7 @@ -
+
{{ $t('overall.networkAnalytics') }}
@@ -392,7 +392,8 @@ export default { this.dnsRcodeMapData = await getDnsMapData('dnsRcode') } } - if (this.$route.path.indexOf('panel') > -1) { + let path = this.$route.path; + if (path.indexOf('panel') > -1 && path.indexOf('linkMonitor') === -1) { await this.initDropdownList() } },