From 94f43f4b112ed55de312205fbb5f79a050dd9d19 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 15 Apr 2026 14:24:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=A9=A1=E7=9A=AE=E6=93=A6=E9=99=A4?= =?UTF-8?q?=E5=88=86=E5=89=B2=E6=A0=87=E8=AE=B0=E5=90=8E=EF=BC=8C=E7=BB=91?= =?UTF-8?q?=E5=AE=9A=E7=9A=84=E5=88=86=E5=89=B2=E9=97=AE=E9=A2=98=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=BA-Infinity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/Segmentations.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue index 31bbd75f..d7b63a23 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue @@ -123,7 +123,7 @@ {{ $t('trials:reading:Segmentations:title:InactiveSegmentationsShow') - }} + }}
{{ index + 1 }}
@@ -1559,7 +1559,7 @@ export default { answer = segment.stats && segment.stats[imageToolAttribute] ? Number((segment.stats[imageToolAttribute]).value).toFixed(this.digitPlaces) : '' } let o = { - Answer: answer === '-Infinity' ? null : answer, + Answer: answer === '-Infinity' || answer === 'NaN' ? null : answer, QuestionId: item.QuestionId, RowId: item.RowId, SegmentId: item.SegmentId,