|
@@ -285,7 +285,7 @@
|
|
|
<svg-icon class="" svgid="svg-煤" />
|
|
|
</div>
|
|
|
<p class="eco_val text-ellipsis">
|
|
|
- {{ (StationinformationData?.qt.jym / 10000).toFixed(2) }}
|
|
|
+ {{ (StationinformationData?.qt.jym ).toFixed(2) }}
|
|
|
</p>
|
|
|
<p class="eco_name">煤</p>
|
|
|
</li>
|
|
@@ -294,7 +294,7 @@
|
|
|
<svg-icon class="" svgid="svg-水" />
|
|
|
</div>
|
|
|
<p class="eco_val text-ellipsis">
|
|
|
- {{ (StationinformationData?.qt.jys / 10000).toFixed(2) }}
|
|
|
+ {{ (StationinformationData?.qt.jys ).toFixed(2) }}
|
|
|
</p>
|
|
|
<p class="eco_name">水</p>
|
|
|
</li>
|
|
@@ -305,7 +305,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<p class="eco_val text-ellipsis">
|
|
|
- {{ (StationinformationData?.qt.co2 / 10000).toFixed(2) }}
|
|
|
+ {{ (StationinformationData?.qt.co2 ).toFixed(2) }}
|
|
|
</p>
|
|
|
<p class="eco_name">二氧化碳</p>
|
|
|
</li>
|
|
@@ -316,7 +316,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<p class="eco_val text-ellipsis">
|
|
|
- {{ (StationinformationData?.qt.so2 / 10000).toFixed(2) }}
|
|
|
+ {{ (StationinformationData?.qt.so2 ).toFixed(2) }}
|
|
|
</p>
|
|
|
<p class="eco_name">二氧化硫</p>
|
|
|
</li>
|
|
@@ -660,7 +660,7 @@
|
|
|
<div class="save-value">
|
|
|
{{
|
|
|
Number(
|
|
|
- Number(StationinformationData?.qt?.jym) / 10000
|
|
|
+ Number(StationinformationData?.qt?.jym)
|
|
|
).toFixed(2)
|
|
|
}}
|
|
|
</div>
|
|
@@ -673,7 +673,7 @@
|
|
|
<div class="save-value">
|
|
|
{{
|
|
|
Number(
|
|
|
- Number(StationinformationData?.qt?.jys) / 10000
|
|
|
+ Number(StationinformationData?.qt?.jys)
|
|
|
).toFixed(2)
|
|
|
}}
|
|
|
</div>
|
|
@@ -688,7 +688,7 @@
|
|
|
<div class="save-value">
|
|
|
{{
|
|
|
Number(
|
|
|
- Number(StationinformationData?.qt?.co2) / 10000
|
|
|
+ Number(StationinformationData?.qt?.co2)
|
|
|
).toFixed(2)
|
|
|
}}
|
|
|
</div>
|
|
@@ -703,7 +703,7 @@
|
|
|
<div class="save-value">
|
|
|
{{
|
|
|
Number(
|
|
|
- Number(StationinformationData?.qt?.so2) / 10000
|
|
|
+ Number(StationinformationData?.qt?.so2)
|
|
|
).toFixed(2)
|
|
|
}}
|
|
|
</div>
|