|
@@ -59,23 +59,37 @@
|
|
|
<div><span>经度:{{ stationInfo.longitude }}</span><span
|
|
|
style="margin-left: 3%">纬度:{{ stationInfo.latitude }}</span></div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
-
|
|
|
+ <div class="textInfo" style="margin-top: 1%">
|
|
|
+ <span class="textInfoTitle">场站发电信息</span>
|
|
|
+ <div class="textInfoContent">
|
|
|
+ <div><span>主风向:{{ stationInfo.wd }}</span></div>
|
|
|
+ <div><span>平均风速:{{ stationInfo.wsAve }} m/s</span></div>
|
|
|
+ <div><span>等效利用小数:{{ stationInfo.hour }} h</span></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div class="hexagonContent">
|
|
|
- <div class="contentBox">
|
|
|
- <span class="numberBox">{{ stationInfo.wd }}</span>
|
|
|
- <span class="textBox">主风向</span>
|
|
|
+ <div class="contentBox" style="margin-top: .5%">
|
|
|
+ <span class="numberBox">{{ stationInfo.batteryDay }}</span>
|
|
|
+ <span class="textBox">昨日发电量</span>
|
|
|
+ <span class="numberBox" style="font-size: 14px">MWh</span>
|
|
|
+
|
|
|
</div>
|
|
|
- <div class="contentBox">
|
|
|
- <span class="numberBox">{{ stationInfo.hour }}<span style="font-size: 14px">h</span></span>
|
|
|
- <span class="textBox">等效利用小数</span>
|
|
|
+ <div class="contentBox" style="margin-top: .5%">
|
|
|
+ <span class="numberBox">{{ stationInfo.batteryMonth }}</span>
|
|
|
+ <span class="textBox">月发电量</span>
|
|
|
+ <span class="numberBox" style="font-size: 14px">MWh</span>
|
|
|
</div>
|
|
|
- <div class="contentBox">
|
|
|
+
|
|
|
+ <div class="contentBox" style="margin-top: .5%">
|
|
|
<span class="numberBox">{{ stationInfo.power }}</span>
|
|
|
- <span class="textBox">发电量</span>
|
|
|
+ <span class="textBox">年发电量</span>
|
|
|
<span class="numberBox" style="font-size: 14px">MWh</span>
|
|
|
</div>
|
|
|
+ <!-- <div class="contentBox">-->
|
|
|
+ <!-- <span class="numberBox">{{ stationInfo.hour }}<span style="font-size: 14px">h</span></span>-->
|
|
|
+ <!-- <span class="textBox">等效利用小数</span>-->
|
|
|
+ <!-- </div>-->
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -277,7 +291,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
getTowerInfo() {
|
|
|
- selectStationTForAir({stationId:this.stationId,equipmentId: this.cftNo, month: ''}).then(res => {
|
|
|
+ selectStationTForAir({stationId: this.stationId, equipmentId: this.cftNo, month: ''}).then(res => {
|
|
|
// console.log(res.data)
|
|
|
let data = res.data
|
|
|
this.stationInfo = {
|
|
@@ -285,7 +299,10 @@ export default {
|
|
|
longitude: data.longitude,
|
|
|
wd: data.wdSum,
|
|
|
hour: data.hour,
|
|
|
- power: data.battery
|
|
|
+ power: data.battery.replace(/\.?0+$/, ""),// 去掉尾部的0
|
|
|
+ wsAve: data.wsAve.replace(/\.?0+$/, ""),
|
|
|
+ batteryDay: data.batteryDay.replace(/\.?0+$/, ""),
|
|
|
+ batteryMonth: data.batteryMonth.replace(/\.?0+$/, "")
|
|
|
}
|
|
|
this.environmentInfo = {
|
|
|
airDensity: data.air,
|