From 04be2c8a16f61d10cb757ffe2f65eb1790170010 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BE=E5=90=8C=E5=AD=A6?= Date: Mon, 27 Oct 2025 10:45:36 +0800 Subject: [PATCH] =?UTF-8?q?UPDATE:=20=E4=BF=AE=E6=94=B9=E6=A3=80=E6=B5=8B?= =?UTF-8?q?=E7=BB=93=E6=9E=9C=E5=AD=97=E5=85=B8=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/home/components/reportResultPopup.vue | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/frontend/src/views/home/components/reportResultPopup.vue b/frontend/src/views/home/components/reportResultPopup.vue index d15a834..d8001f7 100644 --- a/frontend/src/views/home/components/reportResultPopup.vue +++ b/frontend/src/views/home/components/reportResultPopup.vue @@ -76,7 +76,7 @@ 检测结论: 符合 - 不符合 + 不符合 无法比较 @@ -114,9 +114,12 @@ > 符合 - + 不符合 + + 无法比较 + {{ '第' + item.time + '次' }} 符合 - 不符合 + 不符合 + 无法比较 @@ -146,7 +150,7 @@ 符合 - + 不符合 @@ -163,7 +167,8 @@
{{ item.dataSourceName }} 符合 - 不符合 + 不符合 + 无法比较
@@ -245,7 +250,7 @@ const handleChooseClick = async () => { whichTimeData.value = Object.keys(resultSourceData.value).map(time => { // 检测结果只要有一个合格就算合格 const checkResult = resultSourceData.value[time].find((item: any) => item.checkResult === 1) - return { time, checkResult: checkResult ? 1 : 2 } + return { time, checkResult: checkResult ? 1 : 0 } }) currentWhichTimeData.value = whichTimeData.value.find((item: any) => item.time == currentResult.whichTime) sourceData.value = resultSourceData.value[currentResult.whichTime]