From 44177e4d6906a1469efdfd64d652bf05bce5b065 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 22 四月 2026 11:32:05 +0800
Subject: [PATCH] 阳光印刷 1.客户档案数据可从私海流入公海
---
src/views/inventoryManagement/vehicleFuelManagement/index.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/inventoryManagement/vehicleFuelManagement/index.vue b/src/views/inventoryManagement/vehicleFuelManagement/index.vue
index 8579cba..3f2a466 100644
--- a/src/views/inventoryManagement/vehicleFuelManagement/index.vue
+++ b/src/views/inventoryManagement/vehicleFuelManagement/index.vue
@@ -79,7 +79,7 @@
align="right"
>
<template #default="scope">
- <span>{{ scope.row.amount?.toFixed(2) }}</span>
+ <span>{{ scope.row.amount?.toFixed(3) }}</span>
</template>
</el-table-column>
<el-table-column
@@ -89,7 +89,7 @@
align="right"
>
<template #default="scope">
- <span>{{ scope.row.liters?.toFixed(2) }}</span>
+ <span>{{ scope.row.liters?.toFixed(3) }}</span>
</template>
</el-table-column>
<el-table-column
@@ -120,7 +120,7 @@
<span
:style="scope.row.isAbnormal ? 'color:#F56C6C;font-weight:600;' : ''"
>
- {{ scope.row.fuelConsumption != null ? scope.row.fuelConsumption.toFixed(2) : '-' }}
+ {{ scope.row.fuelConsumption != null ? scope.row.fuelConsumption.toFixed(3) : '-' }}
</span>
</template>
</el-table-column>
@@ -132,7 +132,7 @@
>
<template #default="scope">
<span>
- {{ scope.row.avgConsumption != null ? scope.row.avgConsumption.toFixed(2) : '-' }}
+ {{ scope.row.avgConsumption != null ? scope.row.avgConsumption.toFixed(3) : '-' }}
</span>
</template>
</el-table-column>
--
Gitblit v1.9.3