From 41a639a4a4b6fbf35db7903b5ee3c068c8644430 Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期二, 21 四月 2026 10:45:56 +0800
Subject: [PATCH] feat: 统一数值精度为三位小数并添加保养项目字段

---
 src/views/procurementManagement/priceManagement/index.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/procurementManagement/priceManagement/index.vue b/src/views/procurementManagement/priceManagement/index.vue
index 76a39ed..1b1b188 100644
--- a/src/views/procurementManagement/priceManagement/index.vue
+++ b/src/views/procurementManagement/priceManagement/index.vue
@@ -34,15 +34,15 @@
         <el-table-column label="瑙勬牸鍨嬪彿" prop="specification" />
         <el-table-column label="渚涘簲鍟嗗悕绉�" prop="supplierName" />
         <el-table-column label="鍘熶环鏍�" prop="oldPrice" width="120">
-          <template #default="{ row }">楼{{ row.oldPrice.toFixed(2) }}</template>
+          <template #default="{ row }">楼{{ row.oldPrice.toFixed(3) }}</template>
         </el-table-column>
         <el-table-column label="鏂颁环鏍�" prop="newPrice" width="120">
-          <template #default="{ row }">楼{{ row.newPrice.toFixed(2) }}</template>
+          <template #default="{ row }">楼{{ row.newPrice.toFixed(3) }}</template>
         </el-table-column>
         <el-table-column label="璋冧环骞呭害" prop="priceChange" width="120">
           <template #default="{ row }">
             <span :style="{ color: row.priceChange >= 0 ? '#f56c6c' : '#67c23a' }">
-              {{ row.priceChange >= 0 ? '+' : '' }}{{ row.priceChange.toFixed(2) }}%
+              {{ row.priceChange >= 0 ? '+' : '' }}{{ row.priceChange.toFixed(3) }}%
             </span>
           </template>
         </el-table-column>

--
Gitblit v1.9.3