|
@@ -649,17 +649,18 @@ export default {
|
|
|
// 选择机场
|
|
|
async getAirPortData() {
|
|
|
try {
|
|
|
- // const res = await TempQuery({
|
|
|
- // id: SERVICE_ID.departureAirId,
|
|
|
- // dataContent: []
|
|
|
- // })
|
|
|
const res = await this.getQueryListAuth(SERVICE_ID.departureAirId, {}, 1, 9999, 280)
|
|
|
if (Number(res.code) === 0) {
|
|
|
if (res.returnData?.listValues?.length) {
|
|
|
+ this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
|
|
|
if (!this.formData.currentAirport) {
|
|
|
- this.formData.currentAirport = res.returnData.listValues[0].planDepartureApt
|
|
|
+ const defaultAirport = 'PEK'
|
|
|
+ let currentAirport = res.returnData.listValues[0].planDepartureApt
|
|
|
+ if (res.returnData.listValues.some(item => item.planDepartureApt === defaultAirport)) {
|
|
|
+ currentAirport = defaultAirport
|
|
|
+ }
|
|
|
+ this.formData.currentAirport = currentAirport
|
|
|
}
|
|
|
- this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
|
|
|
this.getAviationData()
|
|
|
this.upAviationData()
|
|
|
this.resetLoopEvent()
|