From 5a33e8aaac42387f443b49cd2fac01166def34ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E=E4=BD=97?= Date: Thu, 18 Jun 2026 22:38:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(#732):=20=E8=AF=B7=E4=BF=AE=E5=A4=8D=20Bug?= =?UTF-8?q?=20#732=EF=BC=88=E9=87=8D=E8=AF=95=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因: - Bug #请修复 Bug #732(重试) 存在的问题 修复: - 现在我已经完整了解了 Bug #732 的分析报告和相关代码。根据分析报告,我需要修复前端 `statistics/index.vue` 中 `el-progress` 的数值转换问题。 --- .../src/views/orderclosedloop/statistics/index.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/healthlink-his-ui/src/views/orderclosedloop/statistics/index.vue b/healthlink-his-ui/src/views/orderclosedloop/statistics/index.vue index a33f27f99..6a6374ff5 100644 --- a/healthlink-his-ui/src/views/orderclosedloop/statistics/index.vue +++ b/healthlink-his-ui/src/views/orderclosedloop/statistics/index.vue @@ -18,7 +18,6 @@ {{ statistics.drugClosedRate }}% @@ -37,7 +36,6 @@ {{ statistics.labClosedRate }}% @@ -56,7 +54,6 @@ {{ statistics.examClosedRate }}% @@ -75,7 +72,6 @@ {{ statistics.treatmentClosedRate }}% @@ -156,7 +152,6 @@ > @@ -387,3 +382,9 @@ onMounted(() => { justify-content: flex-end; } + + :percentage="Number(statistics.drugClosedRate) || 0" + :percentage="Number(statistics.labClosedRate) || 0" + :percentage="Number(statistics.examClosedRate) || 0" + :percentage="Number(statistics.treatmentClosedRate) || 0" + :percentage="Number(scope.row.closedRate) || 0" \ No newline at end of file