From 2432829ea59dbc871f28767f1dbe12c0d06b594e Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 17 Sep 2025 10:20:25 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E8=A1=A8=E5=8D=95=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=A4=87=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms/components/IRecist/QuestionForm.vue | 1 + .../reading/dicoms/components/IRecist/QuestionList.vue | 2 +- .../reading/dicoms/components/Lugano/QuestionForm.vue | 1 + .../reading/dicoms/components/MRecist/QuestionForm.vue | 2 +- .../reading/dicoms/components/PCWG/QuestionForm.vue | 2 +- .../reading/dicoms/components/Recist/QuestionForm.vue | 1 + .../reading/dicoms/components/RecistBM/QuestionForm.vue | 5 ++++- 7 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionForm.vue index 270d83f..beee50c 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionForm.vue @@ -50,6 +50,7 @@ :key="qs.Id" :label="`${qs.QuestionName}`" :prop="qs.Id" + :title="qs.Remark" :rules="[ { required: (qs.IsRequired === 0 || (qs.IsRequired ===1 && qs.RelevanceId && (questionForm[qs.RelevanceId] === qs.RelevanceValue)) || (qs.QuestionMark === 6 && questionForm.IsCanEditPosition === true) || (questionForm.IsCanEditPosition && qs.QuestionMark === 10)) && qs.Type!=='group' && qs.Type!=='summary', message:['radio', 'select', 'checkbox'].includes(qs.Type) ? $t('common:ruleMessage:select') : $t('common:ruleMessage:specify'), trigger: ['blur','change']}, diff --git a/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionList.vue index 27be902..f03a4aa 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/IRecist/QuestionList.vue @@ -744,7 +744,7 @@ export default { let msg = this.$t('trials:reading:warnning:msg14') // msg = msg.replace('xxx', qs.QuestionName) msg = msg.replace('xxx', qs.MaxQuestionCount) - msg = msg.replace('yyy', this.$fd('CriterionType', this.CriterionType)) + msg = msg.replace('yyy', this.$fd('CriterionType', this.criterionType)) this.$confirm(msg, { type: 'warning', showCancelButton: false, 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 c014f61..f7ef61d 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 @@ -51,6 +51,7 @@ :key="qs.Id" :label="`${qs.QuestionName}`" :prop="qs.Id" + :title="qs.Remark" :rules="[ { required: (qs.IsRequired === 0 || (qs.IsRequired ===1 && qs.RelevanceId && (qs.RelevanceValue.includes(questionForm[qs.RelevanceId]))) || (qs.QuestionMark === 6 && questionForm.IsCanEditPosition === true) || (questionForm.IsCanEditPosition && qs.QuestionMark === 10)) && qs.Type!=='group' && qs.Type!=='summary', message:['radio', 'select', 'checkbox'].includes(qs.Type) ? $t('common:ruleMessage:select') : $t('common:ruleMessage:specify'), trigger: ['blur','change']}, diff --git a/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue index 8481f92..3d2c102 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/MRecist/QuestionForm.vue @@ -26,7 +26,7 @@ -