|
@@ -180,13 +180,14 @@ export function useFlightInfo(name: string, dataContent: CommonValue[]) {
|
|
|
const computedFlightInfo = computed(() => item => {
|
|
|
if (['departureAirportZh', 'landingAirportZh'].includes(item.key)) {
|
|
|
return airportNameZhMap[flightInfo[item.key.slice(0, -2)]!]
|
|
|
- } else if (item.getter) {
|
|
|
+ }
|
|
|
+ if (item.getter) {
|
|
|
return item.getter(flightInfo)
|
|
|
- } else if (item.key) {
|
|
|
+ }
|
|
|
+ if (item.key) {
|
|
|
return String(flightInfo[item.key] ?? '')
|
|
|
- } else {
|
|
|
- return ''
|
|
|
}
|
|
|
+ return ''
|
|
|
})
|
|
|
|
|
|
const airportNameZhMap: { [code: string]: string } = reactive({})
|