|
@@ -57,6 +57,15 @@ export function useFlightState(
|
|
|
) {
|
|
|
row.groundService = 'Y'
|
|
|
}
|
|
|
+ if (name === 'ArrivalAirport') {
|
|
|
+ if (
|
|
|
+ (['ZH', 'CA', 'KY', 'SC'] as CommonValue[]).includes(row.IATACode)
|
|
|
+ ) {
|
|
|
+ row.groundServiceSZ = 'Y'
|
|
|
+ } else {
|
|
|
+ row.groundService = 'Y'
|
|
|
+ }
|
|
|
+ }
|
|
|
if (
|
|
|
name.includes('ArrivalAirport') &&
|
|
|
typeof row.planLandingTime === 'string'
|