From 46b532b85873f35f74c2bdf3397f190e6f32f890 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 2 Feb 2026 14:06:04 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=9Edicom=E9=95=BF=E7=9F=AD=E5=BE=84?= =?UTF-8?q?=E5=B7=A5=E5=85=B7=E4=B8=8E=E9=97=AE=E9=A2=98=E8=BF=9B=E8=A1=8C?= =?UTF-8?q?=E7=BB=91=E5=AE=9A=E5=80=BC=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/customize/QuestionFormItem.vue | 2 +- .../reading/dicoms3D/components/customize/QuestionList.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 830f44b1..8b6b0740 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 @@ -1369,7 +1369,7 @@ export default { } else if (prop === 'length' || prop === 'perimeter') { value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } else { - value = this.reRound(csUtils.roundNumber(value), this.digitPlaces) + value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } } else if (this.isNoneDicom && value !== null) { value = this.reRound(csUtils.roundNumber(value), this.digitPlaces) 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 0f12415a..4ea41cab 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 @@ -1061,7 +1061,7 @@ export default { } else if (prop === 'length' || prop === 'perimeter') { value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } else { - value = this.reRound(csUtils.roundNumber(value), this.digitPlaces) + value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } } else if (this.isNoneDicom && value !== null) { value = this.reRound(csUtils.roundNumber(value), this.digitPlaces)