From c09220dbd37dfde8b41e1ad63e4f81de12bb9a80 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 17 Sep 2025 17:11:34 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90mRecist=E3=80=91=E6=96=B0=E7=97=85?= =?UTF-8?q?=E7=81=B6=E7=9A=84=E5=90=8E=E7=BB=AD=E8=AE=BF=E8=A7=86=E4=B8=AD?= =?UTF-8?q?=EF=BC=8C=E5=85=B8=E5=9E=8B=E8=82=9D=E5=86=85=E7=97=85=E7=81=B6?= =?UTF-8?q?=E4=B8=BA=E6=98=AF=EF=BC=8C=E7=9B=B4=E5=BE=84=E6=B5=8B=E9=87=8F?= =?UTF-8?q?=E5=B0=8F=E4=BA=8E10mm=E8=AE=BE=E4=B8=BA=E7=96=91=E4=BC=BC?= =?UTF-8?q?=EF=BC=8C=E5=A4=A7=E4=BA=8E=E7=AD=89=E4=BA=8E10mm=E8=AE=BE?= =?UTF-8?q?=E4=B8=BA=E6=98=8E=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/mRecist/QuestionList.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/mRecist/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/mRecist/QuestionList.vue index 2369620e..910887fd 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/mRecist/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/mRecist/QuestionList.vue @@ -536,7 +536,7 @@ export default { this.$set(this.innerFormData[`${tableId}_${rowIndex}`], stateId, 0) } - if (!(innerForm.IsCurrentTaskAdd === 'True')) { + if (!(innerForm.IsCurrentTaskAdd === 'True') && lesionType !== 2) { // 非基线时,非淋巴结病灶长径>=10mm,自动给“存在”状态,如果淋巴结病灶短径>=10mm,自动给“存在”状态。 if (!this.isBaseLineTask && ((obj.toolName === 'Length' && length >= 10) || (obj.toolName === 'Bidirectional' && short >= 10))) { this.$set(this.innerFormData[`${tableId}_${rowIndex}`], 'LesionState', 0) @@ -624,9 +624,10 @@ export default { this.$set(this.innerFormData[`${tableId}_${rowIndex}`], 'LesionState', 0) this.$set(this.innerFormData[`${tableId}_${rowIndex}`], stateId, 0) } + const intrahepaticLesion = this.innerFormData[`${tableId}_${rowIndex}`].IntrahepaticLesion const isCurrentTaskAdd = this.innerFormData[`${tableId}_${rowIndex}`].IsCurrentTaskAdd const isLymphNodes = this.innerFormData[`${tableId}_${rowIndex}`].IsLymphNodes - if (!(isCurrentTaskAdd === 'True')) { + if (!(isCurrentTaskAdd === 'True') && lesionType !== 2) { // 非基线时,非淋巴结病灶长径>=10mm,自动给“存在”状态,如果淋巴结病灶短径>=10mm,自动给“存在”状态。 if (!this.isBaseLineTask && ((toolName === 'Length' && length >= 10) || (toolName === 'Bidirectional' && short >= 10))) { this.$set(this.innerFormData[`${tableId}_${rowIndex}`], 'LesionState', 0)