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') {