From e705ef7b15c04307d6f37b388564dedfaeef4a55 Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期二, 21 四月 2026 15:27:09 +0800
Subject: [PATCH] 阳光彩印web 生产报工的机台展示
---
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