From 0a251e40e30e7c8a96d71b3b9b6c459d4dfa4b22 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期三, 08 七月 2026 23:04:45 +0800
Subject: [PATCH] 暂存

---
 src/views/reportAnalysis/reportManagement/index.vue |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/src/views/reportAnalysis/reportManagement/index.vue b/src/views/reportAnalysis/reportManagement/index.vue
index dc9d486..3bcb8ae 100644
--- a/src/views/reportAnalysis/reportManagement/index.vue
+++ b/src/views/reportAnalysis/reportManagement/index.vue
@@ -315,7 +315,7 @@
   const stat = passRateStatisticsData.value.find(item => item.modelType === type);
   if (stat) {
     if (field === 'completionRate' || field === 'passRate') {
-      return stat[field] ? Number(stat[field]).toFixed(0) + '%' : '0%';
+      return stat[field] ? parseFloat(stat[field]) + '%' : '0%';
     }
     return stat[field];
   }
@@ -912,7 +912,6 @@
 <style scoped>
 .report-management {
   padding: 20px;
-  background-color: #f5f5f5;
   min-height: 100vh;
   /* height: 87vh;
   overflow: hidden; */

--
Gitblit v1.9.3