|
@@ -54,17 +54,17 @@ const totalWorkKeys: [string, string, string, string, number][] = [
|
|
|
],
|
|
],
|
|
|
[
|
|
[
|
|
|
'totalPowerConsumption',
|
|
'totalPowerConsumption',
|
|
|
- 'KWH',
|
|
|
|
|
|
|
+ 'MWH',
|
|
|
'累计用电量',
|
|
'累计用电量',
|
|
|
'i-material-symbols:electric-bolt-outline-rounded text-sky',
|
|
'i-material-symbols:electric-bolt-outline-rounded text-sky',
|
|
|
- 2
|
|
|
|
|
|
|
+ 4
|
|
|
],
|
|
],
|
|
|
[
|
|
[
|
|
|
'totalWaterInjection',
|
|
'totalWaterInjection',
|
|
|
- '方',
|
|
|
|
|
|
|
+ '万方',
|
|
|
'累计注水量',
|
|
'累计注水量',
|
|
|
'i-material-symbols:water-drop-outline-rounded text-sky',
|
|
'i-material-symbols:water-drop-outline-rounded text-sky',
|
|
|
- 2
|
|
|
|
|
|
|
+ 4
|
|
|
],
|
|
],
|
|
|
['totalGasInjection', '万方', '累计注气量', 'i-material-symbols:cloud-outline text-sky', 4]
|
|
['totalGasInjection', '万方', '累计注气量', 'i-material-symbols:cloud-outline text-sky', 4]
|
|
|
]
|
|
]
|
|
@@ -104,9 +104,9 @@ const getTotal = useDebounceFn(async () => {
|
|
|
totalWork.value = {
|
|
totalWork.value = {
|
|
|
...totalWork.value,
|
|
...totalWork.value,
|
|
|
totalFuelConsumption: 0,
|
|
totalFuelConsumption: 0,
|
|
|
- totalPowerConsumption: 0,
|
|
|
|
|
- totalWaterInjection: 0,
|
|
|
|
|
...res2,
|
|
...res2,
|
|
|
|
|
+ totalPowerConsumption: (res2.totalPowerConsumption || 0) / 10000,
|
|
|
|
|
+ totalWaterInjection: (res2.totalWaterInjection || 0) / 10000,
|
|
|
totalGasInjection: (res2.totalGasInjection || 0) / 10000
|
|
totalGasInjection: (res2.totalGasInjection || 0) / 10000
|
|
|
}
|
|
}
|
|
|
} finally {
|
|
} finally {
|