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 () {