|
@@ -164,23 +164,21 @@
|
|
|
<div class="stationInfo">
|
|
|
<div class="name">实时功率</div>
|
|
|
<div class="nums">
|
|
|
- <!-- {{
|
|
|
+ {{
|
|
|
$store.state.titleInfo.stationOverviewInfos[
|
|
|
- item[0].stationId
|
|
|
+ item[0].station
|
|
|
]?.realTimePower?.value.toFixed(2)
|
|
|
- }}MW -->
|
|
|
- {{getseeting($store.state.titleInfo.stationOverviewInfos, item[0], 'power')}}MW
|
|
|
+ }}MW
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="stationInfo">
|
|
|
<div class="name">日照强度</div>
|
|
|
<div class="nums">
|
|
|
- <!-- {{
|
|
|
+ {{
|
|
|
$store.state.titleInfo.stationOverviewInfos[
|
|
|
- item[0].stationId
|
|
|
+ item[0].station
|
|
|
]?.averageWindSpeed?.value.toFixed(2)
|
|
|
- }}m/s -->
|
|
|
- {{getseeting($store.state.titleInfo.stationOverviewInfos, 'wind')}}m/s
|
|
|
+ }}KW/㎡
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -730,7 +728,8 @@ export default {
|
|
|
this.stationObj[key] = [];
|
|
|
}
|
|
|
this.windterbin = msg;
|
|
|
- let arr = Object.keys(msg).sort();
|
|
|
+ // let arr = Object.keys(msg).sort();
|
|
|
+ let arr = Object.keys(msg);
|
|
|
for (const id of arr) {
|
|
|
let val = msg[id];
|
|
|
|
|
@@ -772,7 +771,8 @@ export default {
|
|
|
}
|
|
|
this.current === "all" &&
|
|
|
(this.cache = JSON.parse(JSON.stringify(this.stationObj)));
|
|
|
- let list = Object.keys(this.stationObj).sort();
|
|
|
+ // let list = Object.keys(this.stationObj).sort();
|
|
|
+ let list = Object.keys(this.stationObj);
|
|
|
for (const id of list) {
|
|
|
stationArr.push(this.stationObj[id]);
|
|
|
}
|