实际功率
{{
$store.state.currentStation
? showDate?.stationOverviewInfos[
$store.state.currentStation
]?.realTimePower?.value.toFixed(2)
: showDate.realTimePower?.value.toFixed(2)
}}
理论功率
{{
$store.state.currentStation
? showDate?.stationOverviewInfos[
$store.state.currentStation
]?.theoreticalPower?.value.toFixed(2)
: showDate.theoreticalPower?.value.toFixed(2)
}}
AGC有功设定
{{
$store.state.currentStation
? showDate?.stationOverviewInfos[
$store.state.currentStation
]?.agcPowerSet?.value.toFixed(2)
: showDate.agcPowerSet?.value.toFixed(2)
}}