Explorar el Código

修改行李详情时间显示

zhaoke hace 1 año
padre
commit
a2b5b2001e
Se han modificado 1 ficheros con 19 adiciones y 9 borrados
  1. 19 9
      src/views/newBagDetails/components/baggageView.vue

+ 19 - 9
src/views/newBagDetails/components/baggageView.vue

@@ -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]
     }
   }
 }