From 342f135d23ee534d5da0670a38e43a0e4252a9c1 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 30 Oct 2025 10:58:29 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=87=AA=E5=AE=9A=E4=B9=89=E9=9D=9Edi?= =?UTF-8?q?com=E3=80=91=E7=BB=91=E5=AE=9A=E9=97=AE=E9=A2=98=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=9A=84=E5=B0=8F=E6=95=B0=E5=8F=96=E5=80=BC=E4=B8=8E?= =?UTF-8?q?=E6=A0=87=E8=AE=B0=E6=98=BE=E7=A4=BA=E7=9A=84=E5=80=BC=E6=9C=89?= =?UTF-8?q?=E5=B7=AE=E5=BC=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/customize/QuestionList.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue index 78ac9fa9..3cf90213 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue @@ -948,6 +948,8 @@ export default { let ps = annotation.ps if (prop === 'area') value = this.reRound(csUtils.roundNumber(value * ps * ps), this.digitPlaces) if (prop === 'length' || prop === 'perimeter') value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) + } else if (this.isNoneDicom && value !== null) { + value = this.reRound(csUtils.roundNumber(value)) } return value !== null ? parseFloat(value).toFixed(this.digitPlaces)