|
@@ -228,26 +228,36 @@ export default {
|
|
|
this.getLuggageList(SERVICE_ID.bagTableId, this.dataContent, ++this.page, this.pageSize);
|
|
|
}
|
|
|
},
|
|
|
- getBagTime (arr) {
|
|
|
- arr.forEach(async item => {
|
|
|
+ async getBagTime (arr) {
|
|
|
+ const newArr = [...arr]
|
|
|
+ const reqUrls = []
|
|
|
+ newArr.forEach(item => {
|
|
|
const { carrierFlights, carrierFlightsDate, outAirport, landAirport } = item
|
|
|
- const { code, returnData } = await this.getQueryList(SERVICE_ID.baggageTime, {
|
|
|
+ const reqItem = this.getQueryList(SERVICE_ID.baggageTime, {
|
|
|
carrierFlights,
|
|
|
carrierFlightsDate,
|
|
|
outAirport,
|
|
|
landAirport
|
|
|
})
|
|
|
- if (code == 0 && returnData && returnData.length) {
|
|
|
+ reqUrls.push(reqItem)
|
|
|
+ })
|
|
|
+ const allReqs = await Promise.allSettled(reqUrls)
|
|
|
+ allReqs.forEach((item, index) => {
|
|
|
+ const { status, value } = item
|
|
|
+ if (status == 'fulfilled') {
|
|
|
+ const { returnData } = value
|
|
|
const newArray = [...returnData]
|
|
|
const itemObj = newArray[0]
|
|
|
+ const newObj = {}
|
|
|
const { actualTakeOffTime, estimateTakeOffTime, scheduleTakeOffTime, actualLandInTime, estimateLandInTime, scheduleLandInTime } = itemObj
|
|
|
- item.newTakeoff_time = actualTakeOffTime ? actualTakeOffTime : estimateTakeOffTime ? estimateTakeOffTime : scheduleTakeOffTime
|
|
|
- item.newLand_time = actualLandInTime ? actualLandInTime : estimateLandInTime ? estimateLandInTime : scheduleLandInTime
|
|
|
- item.takeTime = item.newTakeoff_time.split('T').at(-1)
|
|
|
- item.landTime = item.newLand_time.split('T').at(-1)
|
|
|
+ newObj.newTakeoff_time = actualTakeOffTime ? actualTakeOffTime : estimateTakeOffTime ? estimateTakeOffTime : scheduleTakeOffTime
|
|
|
+ newObj.newLand_time = actualLandInTime ? actualLandInTime : estimateLandInTime ? estimateLandInTime : scheduleLandInTime
|
|
|
+ newObj.takeTime = newObj.newTakeoff_time.split('T').at(-1)
|
|
|
+ newObj.landTime = newObj.newLand_time.split('T').at(-1)
|
|
|
+ newArr[index] = Object.assign(newArr[index], newObj)
|
|
|
}
|
|
|
})
|
|
|
- this.tableData = [...this.tableDataCopy]
|
|
|
+ this.tableData = [...newArr]
|
|
|
}
|
|
|
}
|
|
|
}
|