|
@@ -1,6 +1,6 @@
|
|
|
import { Query } from '@/api/webApi'
|
|
|
import { Ref } from 'vue'
|
|
|
-import { CommonData } from '~/common'
|
|
|
+import { CommonData, CommonValue } from '~/common'
|
|
|
|
|
|
export function useFlightState(
|
|
|
name: string,
|
|
@@ -49,6 +49,14 @@ export function useFlightState(
|
|
|
row.warningState = getWarningState(row)
|
|
|
}
|
|
|
}
|
|
|
+ if (
|
|
|
+ name.includes('InternationalDeparture') &&
|
|
|
+ !(['CA', 'ZH', 'CZ', 'O3', '5X', 'FX', 'DO'] as CommonValue[]).includes(
|
|
|
+ row.IATACode
|
|
|
+ )
|
|
|
+ ) {
|
|
|
+ row.groundService = 'Y'
|
|
|
+ }
|
|
|
if (
|
|
|
name.includes('ArrivalAirport') &&
|
|
|
typeof row.planLandingTime === 'string'
|