From f237d027aece7c871fac8b6b4300e87fbd1db34e Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期四, 11 九月 2025 17:03:17 +0800
Subject: [PATCH] 倍率报表调整小数位展示

---
 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 93fd442..4a04b5d 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 * 100).toFixed(2))
+          return parseFloat(value.toFixed(2))
         } else {
           return '0'
         }

--
Gitblit v1.9.3