From 2df6c37fd0ef327ba400d497f9b78b1a2af4ad40 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 21 Jul 2025 10:49:02 +0800 Subject: [PATCH] =?UTF-8?q?RECIST1.1=E6=A0=87=E5=87=86=EF=BC=8C=E5=9C=A8?= =?UTF-8?q?=E5=9F=BA=E7=BA=BF=E6=97=B6=EF=BC=8C=E7=9F=A9=E5=BD=A2=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E5=BA=94=E8=AF=A5=E6=98=AF=E5=8F=AF=E7=94=A8=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dicoms3D/components/Recist/QuestionList.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue index c5e76b33..22ea3311 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue @@ -1745,9 +1745,9 @@ export default { if (this.activeName) { return this.checkToolCanActive(toolName) } else { - if (this.isBaseLineTask && (toolName === 'Bidirectional' || toolName === 'Length' || toolName === 'RectangleRoi')) { + if (this.isBaseLineTask && (toolName === 'Bidirectional' || toolName === 'Length' || toolName === 'RectangleRoi' || toolName === 'RectangleROI')) { return { isCanActiveTool: true, reason: '' } - } else if (!this.isBaseLineTask && (toolName === 'ArrowAnnotate' || toolName === 'Bidirectional' || toolName === 'Length' || toolName === 'RectangleRoi')) { + } else if (!this.isBaseLineTask && (toolName === 'ArrowAnnotate' || toolName === 'Bidirectional' || toolName === 'Length' || toolName === 'RectangleRoi' || toolName === 'RectangleROI')) { return { isCanActiveTool: true, reason: '' } } else if (this.isBaseLineTask && toolName === 'ArrowAnnotate') { return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg54') } @@ -1770,10 +1770,10 @@ export default { } else if (innerForm.LesionType === 0 && isLymphNodes === 0 && toolName !== 'Length') { // '非淋巴结靶病灶需使用直径测量工具' return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg7') } - } else if (innerForm.LesionType === 1 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'RectangleRoi') { + } else if (innerForm.LesionType === 1 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'RectangleRoi' && toolName !== 'RectangleROI') { // '淋巴结非靶病灶需使用长短径测量工具或矩形工具' return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg8') } - } else if (innerForm.LesionType === 1 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'RectangleRoi') { + } else if (innerForm.LesionType === 1 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'RectangleRoi' && toolName !== 'RectangleROI') { // '非淋巴结非靶病灶需使用直径测量工具或矩形工具' return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg9') } } else if (toolName === 'ArrowAnnotate') { @@ -1788,10 +1788,10 @@ export default { } else if (innerForm.LesionType === 0 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate') { // 非淋巴结靶病灶需使用直径测量工具或箭头工具 return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg11') } - } else if (innerForm.LesionType === 1 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate' && toolName !== 'RectangleRoi') { + } else if (innerForm.LesionType === 1 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate' && toolName !== 'RectangleRoi' && toolName !== 'RectangleROI') { // 淋巴结非靶病灶需使用长短径测量工具或矩形工具或矩形工具或箭头工具 return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg52') } - } else if (innerForm.LesionType === 1 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate' && toolName !== 'RectangleRoi') { + } else if (innerForm.LesionType === 1 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate' && toolName !== 'RectangleRoi' && toolName !== 'RectangleROI') { // 非淋巴结非靶病灶需使用直径测量工具或矩形工具或矩形工具或箭头工具 return { isCanActiveTool: false, reason: this.$t('trials:reading:warnning:msg53') } } else if (innerForm.LesionType === 2 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate') {