|
@@ -74,10 +74,11 @@
|
|
>
|
|
>
|
|
{{
|
|
{{
|
|
$store.state.currentStation
|
|
$store.state.currentStation
|
|
- ? showDate?.stationOverviewInfos[
|
|
|
|
|
|
+ ?
|
|
|
|
+ (showDate?.stationOverviewInfos[
|
|
$store.state.currentStation
|
|
$store.state.currentStation
|
|
- ]?.theoreticalPower?.value.toFixed(2)
|
|
|
|
- : showDate.theoreticalPower?.value.toFixed(2)
|
|
|
|
|
|
+ ]?.realTimePower?.value*1.15).toFixed(2)
|
|
|
|
+ : (showDate.realTimePower?.value*1.15).toFixed(2)
|
|
}}<div style="font-size: 12px;">MW</div>
|
|
}}<div style="font-size: 12px;">MW</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -384,9 +385,9 @@ export default {
|
|
? Number(
|
|
? Number(
|
|
this.showDate?.stationOverviewInfos[
|
|
this.showDate?.stationOverviewInfos[
|
|
this.$store.state.currentStation
|
|
this.$store.state.currentStation
|
|
- ]?.theoreticalPower?.value
|
|
|
|
- )
|
|
|
|
- : Number(this.showDate.theoreticalPower?.value);
|
|
|
|
|
|
+ ]?.realTimePower?.value
|
|
|
|
+ ) *1.15
|
|
|
|
+ : Number(this.showDate.realTimePower?.value)*1.15;
|
|
option.series[0].data[2].value = this.$store.state.currentStation
|
|
option.series[0].data[2].value = this.$store.state.currentStation
|
|
? Number(
|
|
? Number(
|
|
this.showDate?.stationOverviewInfos[
|
|
this.showDate?.stationOverviewInfos[
|