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