From 11fa749fe1344b39d7252b5fc15ffbee0da7d0b6 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 27 Jun 2025 15:08:33 +0800 Subject: [PATCH] =?UTF-8?q?CRF=E8=A1=A8=E6=95=B0=E5=80=BC=E9=97=AE?= =?UTF-8?q?=E9=A2=98=EF=BC=8C=E5=87=BA=E7=8E=B0NaN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/customize/QuestionFormItem.vue | 3 +++ 1 file changed, 3 insertions(+) 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 3d12dc9f..7946db56 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 @@ -818,6 +818,9 @@ export default { } catch (e) { console.log(e) } + if (isNaN(num)) { + return null + } if (rules.ValueType === 2) { num = num * 100 }