From 6f911d0d747c0d6aedd396b0ea4d2d1fdce9bdec Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 29 Jul 2026 15:53:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=94=81=E5=AE=9A=E8=92=99=E7=89=88=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E7=99=BD=E5=90=8D=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 7c504470..3d017a90 100644 --- a/src/App.vue +++ b/src/App.vue @@ -98,6 +98,7 @@ import timeTag from '@/components/timeTag' import Vue from 'vue' import i18n from './lang' import DicomEvent from '@/views/trials/trials-panel/reading/dicoms/components/DicomEvent' +import WHITELIST from "./utils/whiteList" export default { name: 'App', components: { @@ -156,7 +157,7 @@ export default { // }, methods: { getIsLock() { - if (zzSessionStorage.getItem('isLock') === 'true') { + if (zzSessionStorage.getItem('isLock') === 'true' && !WHITELIST.includes(this.$route.path)) { this.isLock = true } else { this.isLock = false