From ba4a5c0d1da118c22d6f1b51b60fb4379a7a67e9 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 21 Jul 2025 14:18:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E5=80=BC=E9=97=AE=E9=A2=98=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E7=BB=91=E5=AE=9A=E6=A0=87=E8=AE=B0=EF=BC=8C=E6=95=B0?= =?UTF-8?q?=E5=80=BC=E8=BE=93=E5=85=A5=E6=A1=86=E7=9A=84=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E5=BF=85=E5=A1=AB=EF=BC=8C=E4=B8=8B=E6=96=B9=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=97=A0=E6=B3=95=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/customize/QuestionFormItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue index 838fa95b..734b2720 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue @@ -486,7 +486,7 @@ export default { validatorNumberInput(rule, value, callback) { let reg = new RegExp(/^(?:-?(?:(?:0|[1-9]\d*)(?:\.\d+)?|\.\d+)|NE)$/, 'g') if (value === '') { - callback(new Error(this.$t('common:ruleMessage:specify'))); + callback(); } else { if (!reg.test(value)) { callback(new Error(this.$t('trials:reading:ruleMessage:validatorNumberInput')));