|
|
@@ -44,7 +44,7 @@ const query = ref<Query>({
|
|
|
})
|
|
|
|
|
|
const totalWorkKeys: [string, string, string, string, number][] = [
|
|
|
- ['totalGasInjection', '万方', '累计注气量', 'i-material-symbols:cloud-outline text-sky', 2],
|
|
|
+ ['totalGasInjection', '万方', '累计注气量', 'i-material-symbols:cloud-outline text-sky', 4],
|
|
|
[
|
|
|
'totalWaterInjection',
|
|
|
'万方',
|
|
|
@@ -102,7 +102,7 @@ const totalWorkloadDetail = ref({
|
|
|
totalNaturalGasInjection: 0
|
|
|
})
|
|
|
|
|
|
-const formatGasInjectionTooltipValue = (value?: number | null) => ((value || 0) / 10000).toFixed(2)
|
|
|
+const formatGasInjectionTooltipValue = (value?: number | null) => ((value || 0) / 10000).toFixed(4)
|
|
|
|
|
|
const getTotal = useDebounceFn(async () => {
|
|
|
totalLoading.value = true
|
|
|
@@ -254,7 +254,7 @@ const getList = useDebounceFn(async () => {
|
|
|
id: type === '2' ? projectDeptId : teamId,
|
|
|
name: type === '2' ? projectDeptName : teamName,
|
|
|
...other,
|
|
|
- cumulativeGasInjection: ((other.cumulativeGasInjection || 0) / 10000).toFixed(2),
|
|
|
+ cumulativeGasInjection: ((other.cumulativeGasInjection || 0) / 10000).toFixed(4),
|
|
|
cumulativeWaterInjection: ((other.cumulativeWaterInjection || 0) / 10000).toFixed(2),
|
|
|
cumulativePowerConsumption: ((other.cumulativePowerConsumption || 0) / 1000).toFixed(2),
|
|
|
cumulativeFuelConsumption: (other.cumulativeFuelConsumption || 0).toFixed(2),
|