From 65b47e0eb58ead373145811cd154c100af5a3c9f Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期四, 11 九月 2025 17:30:30 +0800
Subject: [PATCH] 倍率报表保留2位小数

---
 src/views/mdc/base/modules/MagnificationReport/MagnificationReportList.vue |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/views/mdc/base/modules/MagnificationReport/MagnificationReportList.vue b/src/views/mdc/base/modules/MagnificationReport/MagnificationReportList.vue
index 4a04b5d..d8f7468 100644
--- a/src/views/mdc/base/modules/MagnificationReport/MagnificationReportList.vue
+++ b/src/views/mdc/base/modules/MagnificationReport/MagnificationReportList.vue
@@ -136,7 +136,7 @@
     filters: {
       numFilter(value) {
         if (value) {
-          return parseFloat(value.toFixed(2))
+          return value.toFixed(2)
         } else {
           return '0'
         }

--
Gitblit v1.9.3