From 407b752e0cfb57c523691b1bccf0b83475e2075b Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 16 Sep 2025 18:00:53 +0800 Subject: [PATCH] =?UTF-8?q?mrecist=E5=90=8E=E7=BB=AD=E8=AE=BF=E8=A7=86?= =?UTF-8?q?=E6=96=B0=E7=97=85=E7=81=B6=E8=81=94=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms/components/MRecist/QuestionForm.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue index f690c9e..9fc84d3 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue @@ -619,14 +619,14 @@ export default { } } // 当前添加的新病灶不做处理 - if (!(this.isCurrentTaskAdd === 'True')) { + if (!(this.isCurrentTaskAdd === 'True') && this.questionForm.LesionType != 2) { // 非基线时,非淋巴结病灶长径>=10mm,自动给“存在”状态,如果淋巴结病灶短径>=10mm,自动给“存在”状态。 - if (!this.isBaseLineTask && !IntrahepaticLesion && ((measureData.type === 'Length' && lesionLength >= 10) || (measureData.type === 'Bidirectional' && lesionShort >= 10))) { + if (!this.isBaseLineTask && ((measureData.type === 'Length' && lesionLength >= 10) || (measureData.type === 'Bidirectional' && lesionShort >= 10))) { const stateId = this.getQuestionId(7) this.$set(this.questionForm, stateId, 0) } // 非基线时,非淋巴结病灶长径<10mm,自动给“存在”状态,如果淋巴结病灶短径<10mm,自动给“消失”状态。 - if (!this.isBaseLineTask && !IntrahepaticLesion && ((measureData.type === 'Length' && lesionLength < 10) || (measureData.type === 'Bidirectional' && lesionShort < 10))) { + if (!this.isBaseLineTask && ((measureData.type === 'Length' && lesionLength < 10) || (measureData.type === 'Bidirectional' && lesionShort < 10))) { const stateId = this.getQuestionId(7) if (isLymphLesion) { this.$set(this.questionForm, stateId, 3)