From efa7c61fe404186f6e28296659309f5719d06243 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Fri, 29 Mar 2024 10:20:54 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=B8=B2=E6=9F=93=E4=B8=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=A0=87=E8=AF=86=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dicoms/components/Fusion/Questions.vue | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 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 2a46a734..4c30c1c6 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 @@ -461,19 +461,12 @@ export default { } FusionEvent.$emit('addOrUpdateAnnotations', { data }) this.questionFormChangeState = true - if (obj.QuestionType === 51) { - if (!this.liverRender) { - this.liverRender = true - } else { - this.setQuestionStatus(this.questions, this.measurements[idx].QuestionType) - } - } - if (obj.QuestionType === 52) { - if (!this.lungRender) { - this.lungRender = true - } else { - this.setQuestionStatus(this.questions, this.measurements[idx].QuestionType) - } + if (obj.QuestionType === 51 && !this.liverRender) { + this.liverRender = true + } else if (obj.QuestionType === 52 && !this.lungRender) { + this.lungRender = true + } else { + this.setQuestionStatus(this.questions, this.measurements[idx].QuestionType) } } },