影像质量问题为不正常时刷新融合页面

uat_us
caiyiling 2024-04-15 14:27:15 +08:00
parent 56783a6f3a
commit 7d2fdd222a
2 changed files with 2 additions and 6 deletions

View File

@ -960,11 +960,6 @@ export default {
if (!this.petctWindow) return if (!this.petctWindow) return
this.petctWindow.postMessage({ type: 'setReadingState', data: data }, window.location) this.petctWindow.postMessage({ type: 'setReadingState', data: data }, window.location)
}) })
DicomEvent.$on('reload', () => {
if (this.petctWindow) {
this.petctWindow.close()
}
})
DicomEvent.$on('closePetct', () => { DicomEvent.$on('closePetct', () => {
if (this.petctWindow) { if (this.petctWindow) {
this.petctWindow.close() this.petctWindow.close()

View File

@ -372,7 +372,7 @@ export default {
DicomEvent.$emit('questionFormChange', false) DicomEvent.$emit('questionFormChange', false)
} }
DicomEvent.$emit('getReportInfo', true) DicomEvent.$emit('getReportInfo', true)
DicomEvent.$emit('readingPageUpdate', {}) // DicomEvent.$emit('readingPageUpdate', {})
var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === this.visitTaskId) var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === this.visitTaskId)
if (idx > -1 && !this.visitTaskList[idx].IsBaseLineTask) { if (idx > -1 && !this.visitTaskList[idx].IsBaseLineTask) {
if (parseInt(imageQuality) === 2) { if (parseInt(imageQuality) === 2) {
@ -381,6 +381,7 @@ export default {
}).then(() => { }).then(() => {
store.dispatch('reading/setImageQuality', imageQuality) store.dispatch('reading/setImageQuality', imageQuality)
DicomEvent.$emit('handleImageQualityAbnormal') DicomEvent.$emit('handleImageQualityAbnormal')
DicomEvent.$emit('readingPageUpdate', {})
}).catch(() => { }).catch(() => {
}) })