From 3083ee1e8bfd1607694341cda6baa46c64fc9412 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Fri, 29 Mar 2024 09:44:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=82=9D=E8=84=8F=E8=A1=80=E6=B1=A0=E7=BA=B5?= =?UTF-8?q?=E9=9A=94=E8=A1=80=E6=B1=A0=E4=BF=9D=E5=AD=98=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms/components/Fusion/Questions.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue index 56f8ff39..7f64b4c6 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue @@ -357,7 +357,7 @@ export default { FusionEvent.$emit('imageLocation', { otherMeasureData: otherMeasureData }) }, saveAnnotation(question) { - if (!this.lungIsInsideVolume || !this.liverIsInsideVolume) { + if((question.QuestionType === 51 && !this.liverIsInsideVolume) || (question.QuestionType === 52 && !this.lungIsInsideVolume)){ // 当前标记在图像外 this.$alert(this.$t('trials:reading:lugano:warnning:outsideVolume'), this.$t('trials:lugano:fusionDialog:warning'), { callback: action => { @@ -404,8 +404,8 @@ export default { saveImageQuality(params).then(async res => { this.$set(question, 'SaveEnum', 0) window.opener.postMessage({ type: 'petctLesionUpdate' }, window.location) - this.$message({ message: this.$t('common:message:savedSuccessfully'), type: 'success', duration: 2000 }) loading.close() + this.$message({ message: this.$t('common:message:savedSuccessfully'), type: 'success', duration: 2000 }) }).catch(() => { loading.close()