From a4a6b7ed917a8f127748ea751970940c75cacda3 Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Mon, 22 Sep 2025 16:09:37 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90PCWG3=E3=80=91=E9=87=8D=E9=98=85?=
=?UTF-8?q?=E8=87=B3=E5=9F=BA=E7=BA=BF=E5=90=8E=EF=BC=8C=E8=BF=9B=E5=85=A5?=
=?UTF-8?q?=E5=9F=BA=E7=BA=BF=E9=98=85=E7=89=87=EF=BC=8C=E5=9F=BA=E7=BA=BF?=
=?UTF-8?q?=E7=97=85=E7=81=B6=E4=B8=8D=E8=83=BD=E5=B0=86=E7=97=85=E7=81=B6?=
=?UTF-8?q?=E6=95=B0=E9=87=8F=E4=BF=AE=E6=94=B9=E4=B8=BA=E6=AF=94=E5=8E=86?=
=?UTF-8?q?=E5=8F=B2=E6=95=B0=E6=8D=AE=E5=A4=A7=EF=BC=8C=E8=BF=99=E9=87=8C?=
=?UTF-8?q?=E4=B8=8D=E5=BA=94=E8=AF=A5=E8=A2=AB=E9=99=90=E5=88=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/user/list/index.vue | 2 +-
.../dicoms/components/PCWG/QuestionForm.vue | 17 ++++++++++-------
2 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/src/views/system/user/list/index.vue b/src/views/system/user/list/index.vue
index f0b7a18..bfa37ae 100644
--- a/src/views/system/user/list/index.vue
+++ b/src/views/system/user/list/index.vue
@@ -97,7 +97,7 @@
{{ userInfo.FirstName }}
- {{ userInfo.Email }}
+ {{ userInfo.EMail }}
{{ userInfo.Phone }}
diff --git a/src/views/trials/trials-panel/reading/dicoms/components/PCWG/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/PCWG/QuestionForm.vue
index f937b7b..0826125 100644
--- a/src/views/trials/trials-panel/reading/dicoms/components/PCWG/QuestionForm.vue
+++ b/src/views/trials/trials-panel/reading/dicoms/components/PCWG/QuestionForm.vue
@@ -210,18 +210,21 @@ export default {
callback(new Error(this.$t('common:ruleMessage:specify')))
} else if (!reg.test(value) || (parseInt(value) > 99 || parseInt(value) <= 0)) {
callback(new Error(this.$t('trials:readingPGWC:warnning:msg1')))
- } else if (parseInt(value) > parseInt(this.questionForm.BaseLineLesionNumber)) {
- callback(new Error(this.$t('trials:reading:pcwg:msg6') + this.questionForm.BaseLineLesionNumber))
- } else {
+ }
+ // else if (parseInt(value) > parseInt(this.questionForm.BaseLineLesionNumber)) {
+ // callback(new Error(this.$t('trials:reading:pcwg:msg6') + this.questionForm.BaseLineLesionNumber))
+ // }
+ else {
callback()
}
},
limitInputValidator(rule, value, callback) {
console.log(this.focusQs)
- if (this.focusQs && !this.isBaseLineTask && this.focusQs.QuestionMark === 11 && (parseInt(value) > parseInt(this.questionForm.BaseLineLesionNumber))) {
- // '基线病灶初始数量为'
- callback(new Error(this.$t('trials:reading:pcwg:msg6') + this.questionForm.BaseLineLesionNumber))
- } else if (this.focusQs && this.focusQs.QuestionMark === 11 && (parseInt(value) > 99 || parseInt(value) <= 0)) {
+ // if (this.focusQs && !this.isBaseLineTask && this.focusQs.QuestionMark === 11 && (parseInt(value) > parseInt(this.questionForm.BaseLineLesionNumber))) {
+ // // '基线病灶初始数量为'
+ // callback(new Error(this.$t('trials:reading:pcwg:msg6') + this.questionForm.BaseLineLesionNumber))
+ // } else
+ if (this.focusQs && this.focusQs.QuestionMark === 11 && (parseInt(value) > 99 || parseInt(value) <= 0)) {
callback(new Error(this.$t('trials:readingPGWC:warnning:msg1')))
} else {
callback()