From 49e39f6f23ec7edf4b3fb2363ab2cf3e462fd5ce Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期三, 22 四月 2026 10:34:11 +0800
Subject: [PATCH] 阳光彩印web 营销台账修改销售合同号改销售订单号
---
src/views/productionManagement/safetyMonitoring/index.vue | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/views/productionManagement/safetyMonitoring/index.vue b/src/views/productionManagement/safetyMonitoring/index.vue
index 8416914..5272814 100644
--- a/src/views/productionManagement/safetyMonitoring/index.vue
+++ b/src/views/productionManagement/safetyMonitoring/index.vue
@@ -24,7 +24,7 @@
</div>
<div class="sensor-data">
<div class="data-item">
- <span>鐢茬兎: {{ sensor.methane.toFixed(2) }}%</span>
+ <span>鐢茬兎: {{ sensor.methane.toFixed(3) }}%</span>
<el-progress
:percentage="Math.min(Math.round(sensor.methane * 40 * 100) / 100, 100)"
:color="getProgressColor(Math.min(Math.round(sensor.methane * 40 * 100) / 100, 100), 80)"
@@ -33,7 +33,7 @@
/>
</div>
<div class="data-item">
- <span>纭寲姘�: {{ sensor.h2s.toFixed(2) }}ppm</span>
+ <span>纭寲姘�: {{ sensor.h2s.toFixed(3) }}ppm</span>
<el-progress
:percentage="Math.min(Math.round((sensor.h2s / 20) * 100 * 100) / 100, 100)"
:color="getProgressColor(Math.min(Math.round((sensor.h2s / 20) * 100 * 100) / 100, 100), 80)"
@@ -59,7 +59,7 @@
</div>
<div class="sensor-data">
<div class="data-item">
- <span>鐢茬兎: {{ sensor.methane.toFixed(2) }}%</span>
+ <span>鐢茬兎: {{ sensor.methane.toFixed(3) }}%</span>
<el-progress
:percentage="Math.min(Math.round(sensor.methane * 40 * 100) / 100, 100)"
:color="getProgressColor(sensor.methane, 2.5)"
@@ -68,7 +68,7 @@
/>
</div>
<div class="data-item">
- <span>纭寲姘�: {{ sensor.h2s.toFixed(2) }}ppm</span>
+ <span>纭寲姘�: {{ sensor.h2s.toFixed(3) }}ppm</span>
<el-progress
:percentage="Math.min(Math.round((sensor.h2s / 20) * 100 * 100) / 100, 100)"
:color="getProgressColor(sensor.h2s, 10)"
@@ -295,7 +295,7 @@
emergencyRecords: [
{
id: 'EM001',
- time: '2024-01-15 14:35:12',
+ time: '2025-01-15 14:35:12',
location: '鍌ㄧ綈T-003',
type: '鐢茬兎瓒呮爣',
status: 'resolved',
@@ -303,7 +303,7 @@
},
{
id: 'EM002',
- time: '2024-01-15 14:35:15',
+ time: '2025-01-15 14:35:15',
location: '鍘嬬缉鏈篊-002',
type: '纭寲姘㈣秴鏍�',
status: 'processing',
@@ -339,7 +339,7 @@
formatProgress(percentage) {
if (percentage == null || isNaN(percentage)) return '0.00%'
const val = Math.round(Number(percentage) * 100) / 100
- return `${val.toFixed(2)}%`
+ return `${val.toFixed(3)}%`
},
// 鍒濆鍖栧浘琛�
initChart() {
--
Gitblit v1.9.3