|
@@ -98,7 +98,7 @@ export default {
|
|
|
},
|
|
|
mounted () {
|
|
|
this.timer = setInterval(() => {
|
|
|
- this.getAirPortData(0)
|
|
|
+ this.getAirPortData()
|
|
|
}, LOOP_INTERVAL.transferArrivalTable)
|
|
|
},
|
|
|
destroyed () {
|
|
@@ -149,7 +149,7 @@ export default {
|
|
|
res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId)
|
|
|
if (Number(res.code) === 0) {
|
|
|
this.AirportList = res.returnData;
|
|
|
- if (type) {
|
|
|
+ if (type && !this.formData.currentAirport) {
|
|
|
const flag = res.returnData.filter(item => item.IATACode == 'CAN');
|
|
|
this.formData.currentAirport = this.TauthId && flag.length ? 'CAN' : res.returnData[0].IATACode;
|
|
|
}
|