zhaoke 1 سال پیش
والد
کامیت
506da57325
2فایلهای تغییر یافته به همراه11 افزوده شده و 9 حذف شده
  1. 10 8
      src/views/newBagDetails/components/baggageView.vue
  2. 1 1
      src/views/systemSettings/views/newMachine/index.vue

+ 10 - 8
src/views/newBagDetails/components/baggageView.vue

@@ -247,14 +247,16 @@ export default {
         if (status == 'fulfilled') {
           const { returnData } = value
           const newArray = [...returnData]
-          const itemObj = newArray[0]
-          const newObj = {}
-          const { actualTakeOffTime, estimateTakeOffTime, scheduleTakeOffTime, actualLandInTime, estimateLandInTime, scheduleLandInTime } = itemObj
-          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)
+          if (newArray && newArray.length) {
+            const itemObj = newArray[0]
+            const newObj = {}
+            const { actualTakeOffTime, estimateTakeOffTime, scheduleTakeOffTime, actualLandInTime, estimateLandInTime, scheduleLandInTime } = itemObj
+            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 = _.orderBy([...newArr], ["takeTime"], ["asc", "desc"]);

+ 1 - 1
src/views/systemSettings/views/newMachine/index.vue

@@ -158,7 +158,7 @@ export default {
   },
   computed: {
     dataList () {
-      return this.arrs.filter(data => !this.search || data.serviceName.toLowerCase().includes(this.search.toLowerCase()))
+      return this.arrs.filter(data => !this.search || data.deployNodeName.toLowerCase().includes(this.search.toLowerCase()))
     }
   },
   created () {