This commit is contained in:
lb
2024-04-23 11:24:31 +08:00
parent 15708c0eef
commit 60c6fdda79
6 changed files with 248 additions and 28 deletions

View File

@@ -35,10 +35,10 @@ const EnergyCostRealtime = () => {
paddingRight: "6px",
}}
>
余热发电(实时)
余热发电(昨日)
</i>
<span style={{ fontSize: "17px", color: "#3ce8ff" }}>
{(+energyInfo?.elecQty2)?.toFixed(2) || 0}kWh
{(+energyInfo?.elecQty1)?.toFixed(2) || 0}kWh
</span>
</div>
@@ -66,7 +66,7 @@ const EnergyCostRealtime = () => {
paddingRight: "6px",
}}
>
水耗量
水耗量(昨日)
</i>
<span style={{ fontSize: "17px", color: "#3ce8ff" }}>
{(+energyInfo?.waterQty)?.toFixed(2) || 0}Km³
@@ -80,7 +80,7 @@ const EnergyCostRealtime = () => {
paddingRight: "6px",
}}
>
天然气I
天然气I(累计)
</i>
<span style={{ fontSize: "17px", color: "#3ce8ff" }}>
{energyInfo?.ngQty1 || "0Nm³"}
@@ -94,7 +94,7 @@ const EnergyCostRealtime = () => {
paddingRight: "6px",
}}
>
电耗量
电耗量(昨日)
</i>
<span style={{ fontSize: "17px", color: "#3ce8ff" }}>
{(+energyInfo?.elecQty2)?.toFixed(2) || 0}kWh
@@ -108,7 +108,7 @@ const EnergyCostRealtime = () => {
paddingRight: "6px",
}}
>
天然气II
天然气II(累计)
</i>
<span style={{ fontSize: "17px", color: "#3ce8ff" }}>
{energyInfo?.ngQty2 || "0Nm³"}