diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue index ce9b71e6..0d990f34 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue @@ -1212,8 +1212,8 @@ export default { // 靶病灶且状态为消失(3) if (this.lesionType === 0 && lesionState === 3) { if (lymphNodes === 1) { - // 淋巴结靶病灶 使用箭头工具 - if (!(measureData && (measureData.type === 'ArrowAnnotate' || measureData.type === 'Bidirectional'))) { + // 淋巴结靶病灶 使用箭头工具 measureData.type === 'ArrowAnnotate' || + if (!(measureData && (measureData.type === 'Bidirectional'))) { // 评估状态为消失的淋巴结靶病灶需使用箭头工具或长短径工具添加标记! this.$confirm(this.$t('trials:lugano:message:validState5'), { type: 'warning', @@ -1244,9 +1244,9 @@ export default { // } } else { // 非淋巴结靶病灶 箭头工具 - if (!(measureData && measureData.type === 'ArrowAnnotate')) { + if (!(measureData && (measureData.type === 'ArrowAnnotate' || measureData.type === 'Bidirectional'))) { // 评估状态为消失的非淋巴结靶病灶只能使用箭头工具添加标记! - this.$confirm(this.$t('trials:reading:warnning:msg30'), { + this.$confirm(this.$t('trials:lugano:warnning:validState7'), { type: 'warning', showCancelButton: false, callback: action => { } diff --git a/src/views/trials/trials-panel/reading/dicoms/components/LuganoWithoutPET/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/LuganoWithoutPET/QuestionForm.vue index ce9b71e6..0d990f34 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/LuganoWithoutPET/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/LuganoWithoutPET/QuestionForm.vue @@ -1212,8 +1212,8 @@ export default { // 靶病灶且状态为消失(3) if (this.lesionType === 0 && lesionState === 3) { if (lymphNodes === 1) { - // 淋巴结靶病灶 使用箭头工具 - if (!(measureData && (measureData.type === 'ArrowAnnotate' || measureData.type === 'Bidirectional'))) { + // 淋巴结靶病灶 使用箭头工具 measureData.type === 'ArrowAnnotate' || + if (!(measureData && (measureData.type === 'Bidirectional'))) { // 评估状态为消失的淋巴结靶病灶需使用箭头工具或长短径工具添加标记! this.$confirm(this.$t('trials:lugano:message:validState5'), { type: 'warning', @@ -1244,9 +1244,9 @@ export default { // } } else { // 非淋巴结靶病灶 箭头工具 - if (!(measureData && measureData.type === 'ArrowAnnotate')) { + if (!(measureData && (measureData.type === 'ArrowAnnotate' || measureData.type === 'Bidirectional'))) { // 评估状态为消失的非淋巴结靶病灶只能使用箭头工具添加标记! - this.$confirm(this.$t('trials:reading:warnning:msg30'), { + this.$confirm(this.$t('trials:lugano:warnning:validState7'), { type: 'warning', showCancelButton: false, callback: action => { }