From 264f00f5a800125f3fe48ddcf17c093657f8d8c4 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 30 Dec 2025 09:16:31 +0800 Subject: [PATCH] 1 --- .../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 091ed105..3cf9a747 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 @@ -1162,7 +1162,7 @@ export default { if (isNAN) { num = '' } - if (isNaN(parseFloat(num))) { + if (!isNaN(parseFloat(num))) { num = Number(num).toFixed(this.digitPlaces) } this.$set(this.QuestionsForm, v.Id, num.toString());