diff --git a/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue b/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue index 151ba2b6..0b3a2c09 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue @@ -960,11 +960,6 @@ export default { if (!this.petctWindow) return this.petctWindow.postMessage({ type: 'setReadingState', data: data }, window.location) }) - DicomEvent.$on('reload', () => { - if (this.petctWindow) { - this.petctWindow.close() - } - }) DicomEvent.$on('closePetct', () => { if (this.petctWindow) { this.petctWindow.close() diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue b/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue index cb0816d7..520cf1d5 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Questions.vue @@ -372,7 +372,7 @@ export default { DicomEvent.$emit('questionFormChange', false) } DicomEvent.$emit('getReportInfo', true) - DicomEvent.$emit('readingPageUpdate', {}) + // DicomEvent.$emit('readingPageUpdate', {}) var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === this.visitTaskId) if (idx > -1 && !this.visitTaskList[idx].IsBaseLineTask) { if (parseInt(imageQuality) === 2) { @@ -381,6 +381,7 @@ export default { }).then(() => { store.dispatch('reading/setImageQuality', imageQuality) DicomEvent.$emit('handleImageQualityAbnormal') + DicomEvent.$emit('readingPageUpdate', {}) }).catch(() => { })