|
@@ -214,10 +214,10 @@ const getList = useDebounceFn(async () => {
|
|
|
id: type === '2' ? projectDeptId : teamId,
|
|
id: type === '2' ? projectDeptId : teamId,
|
|
|
name: type === '2' ? projectDeptName : teamName,
|
|
name: type === '2' ? projectDeptName : teamName,
|
|
|
...other,
|
|
...other,
|
|
|
- cumulativeGasInjection: (other.cumulativeGasInjection || 0) / 10000,
|
|
|
|
|
- cumulativeWaterInjection: (other.cumulativeWaterInjection || 0) / 10000,
|
|
|
|
|
- cumulativePowerConsumption: (other.cumulativePowerConsumption || 0) / 1000,
|
|
|
|
|
- cumulativeFuelConsumption: (other.cumulativeFuelConsumption || 0) / 10000
|
|
|
|
|
|
|
+ cumulativeGasInjection: ((other.cumulativeGasInjection || 0) / 10000).toFixed(4),
|
|
|
|
|
+ cumulativeWaterInjection: ((other.cumulativeWaterInjection || 0) / 10000).toFixed(4),
|
|
|
|
|
+ cumulativePowerConsumption: ((other.cumulativePowerConsumption || 0) / 1000).toFixed(4),
|
|
|
|
|
+ cumulativeFuelConsumption: ((other.cumulativeFuelConsumption || 0) / 10000).toFixed(4)
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
)
|
|
)
|