caiyiling 2026-07-29 16:06:05 +08:00
commit 197b3213e7
1 changed files with 2 additions and 1 deletions

View File

@ -98,6 +98,7 @@ import timeTag from '@/components/timeTag'
import Vue from 'vue' import Vue from 'vue'
import i18n from './lang' import i18n from './lang'
import DicomEvent from '@/views/trials/trials-panel/reading/dicoms/components/DicomEvent' import DicomEvent from '@/views/trials/trials-panel/reading/dicoms/components/DicomEvent'
import WHITELIST from "./utils/whiteList"
export default { export default {
name: 'App', name: 'App',
components: { components: {
@ -156,7 +157,7 @@ export default {
// }, // },
methods: { methods: {
getIsLock() { getIsLock() {
if (zzSessionStorage.getItem('isLock') === 'true') { if (zzSessionStorage.getItem('isLock') === 'true' && !WHITELIST.includes(this.$route.path)) {
this.isLock = true this.isLock = true
} else { } else {
this.isLock = false this.isLock = false