From 74a8fa2524df50b2215b7db201f925e9d3ada5d7 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Wed, 28 Feb 2024 14:14:23 +0800 Subject: [PATCH] =?UTF-8?q?lugano=E7=97=85=E7=81=B6=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms/components/Fusion/TableQuestionItem.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/TableQuestionItem.vue b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/TableQuestionItem.vue index faeba76e..a8d9aeec 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/TableQuestionItem.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/TableQuestionItem.vue @@ -263,6 +263,7 @@ export default { mounted() { this.trialId = this.$route.query.trialId this.initForm() + console.log(this.getQuestionVal(7)) }, beforeDestroy() { @@ -661,7 +662,8 @@ export default { var idx = this.questions.findIndex(i => i.QuestionMark === questionMark) if (idx > -1) { var questionId = this.questions[idx].Id - return this.questionForm[questionId] + var answer = this.questionForm[questionId] ? this.questionForm[questionId] : this.answers[questionId] + return answer } else { return '' } @@ -723,6 +725,7 @@ export default { return new Blob([bytesCode], { type: imgtype }) }, handleSave() { + console.log('handleSave') this.$refs.measurementForm.validate(async valid => { if (!valid) return const loading = this.$loading({ fullscreen: true }) @@ -741,6 +744,8 @@ export default { } // 消失、无法评估状态的病灶限制不能测量SUV值 var lesionState = this.getQuestionVal(7) + console.log(lesionState) + lesionState = parseInt(lesionState) if ((lesionState === 2 || lesionState === 3) && this.questionForm.OtherMeasureData) { loading.close() this.$confirm(this.$t('评估状态为无法评估或消失的病灶不能测量SUV值!'), {