|
@@ -351,9 +351,13 @@ export default {
|
|
|
// })
|
|
|
const res = await this.getQueryListAuth(SERVICE_ID.departureAirMainId, {}, 1, 9999, 276)
|
|
|
if (Number(res.code) == 0) {
|
|
|
- this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
|
|
|
- this.formData.currentAirport = 'PEK'
|
|
|
- this.resetLoopEvent()
|
|
|
+ if (res.returnData?.listValues?.length) {
|
|
|
+ this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
|
|
|
+ this.formData.currentAirport = res.returnData.listValues[0].planDepartureApt
|
|
|
+ this.resetLoopEvent()
|
|
|
+ } else {
|
|
|
+ this.$message.warning('无航站数据权限')
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$message.error(res.message)
|
|
|
}
|