zhaoke hace 1 año
padre
commit
c4f6ddb3aa

+ 4 - 3
src/views/advancedQuery/views/advancedHome.vue

@@ -2,7 +2,7 @@
   <div class="advance">
     <div class="advance__head flex">
       <div class="flex-wrap interfaceLog_head_time">
-        <div class="manageTitle">高级查询</div>
+        <div class="manageTitle">高级查询111</div>
         <!-- <div class="interfaceLog_head_time_start mr10">
           <el-date-picker
             v-model="flightDate[0]"
@@ -1035,7 +1035,7 @@ export default {
           this.$message.error('获取数据失败')
           return
         }
-        if (needPage === this.page && result.length) {
+        if (needPage == this.page && result.length) {
           if (singleJump) {
             if (result.length === 1) {
               this.$router.push({
@@ -1071,10 +1071,11 @@ export default {
               }
             }
           }
+          console.log(result)
           this.tableData = [...this.tableData, ...result]
           setTableFilters(this.tableData, this.tableDataFilters)
         } else {
-          if (this.page === 1) {
+          if (this.page == 1) {
             this.$message.info('未查询到匹配结果')
           }
           this.page--

+ 22 - 22
src/views/baggageManagementTemp/components/departure/index.vue

@@ -298,7 +298,7 @@ export default {
   },
   computed: {
     singleDay () {
-      return this.startDate === this.endDate
+      return this.startDate == this.endDate
     },
     ...mapGetters(['timeZone'])
   },
@@ -350,7 +350,7 @@ export default {
         //   dataContent: []
         // })
         const res = await this.getQueryListAuth(SERVICE_ID.departureAirMainId, {}, 1, 9999, 276)
-        if (Number(res.code) === 0) {
+        if (Number(res.code) == 0) {
           this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
           this.formData.currentAirport = 'PEK'
           this.resetLoopEvent()
@@ -368,7 +368,7 @@ export default {
         //   dataContent: []
         // })
         const res = await this.getQueryList(SERVICE_ID.departureWarningId, {}, 1, 999)
-        if (Number(res.code) === 0) {
+        if (Number(res.code) == 0) {
           const { listValues } = res.returnData
           this.WarningData = listValues
         } else {
@@ -380,15 +380,15 @@ export default {
     },
     tableRowClassName ({ row, rowIndex }) {
       const classes = []
-      if (row.flightStatus === 'DLY') {
+      if (row.flightStatus == 'DLY') {
         classes.push('bgl-delayed')
       }
-      if (row.flightStatus === 'CAN') {
+      if (row.flightStatus == 'CAN') {
         classes.push('bgl-canceled')
       }
-      if (row.hasTakeOff === 1) {
+      if (row.hasTakeOff == 1) {
         classes.push('bgl-hui')
-        if (rowIndex === this.leaveCount - 1) {
+        if (rowIndex == this.leaveCount - 1) {
           classes.push('redBorder')
         }
       }
@@ -427,7 +427,7 @@ export default {
         //   dataContent: [...arr, ...arr, ...arr]
         // })
         const res = await this.getQueryList(SERVICE_ID.departureTableMainId, { departureAirport: arr[0], beginDate: arr[1], endDate: arr[2] }, 1, 9999)
-        if (Number(res.code) === 0) {
+        if (Number(res.code) == 0) {
           this.initTableData(res.returnData.listValues)
         }
         this.loading = false
@@ -444,13 +444,13 @@ export default {
       const curTime = this.formatTime(currentTime)
       this.baggageCount = 0
       tableData.forEach(item => {
-        item['flightCanceled'] = item['flightStatus'] === 'CAN' ? 1 : 0
-        item['toUnload'] = item['tounLoad'] - item['OFFCount']
-        item['exceptions'] = item['preLoad'] - item['boardID']
+        item['flightCanceled'] = item['flightStatus'] == 'CAN' ? 1 : 0
+        item['toUnload'] = Number(item['tounLoad']) - Number(item['OFFCount'])
+        item['exceptions'] = Number(item['preLoad']) - Number(item['boardID'])
         if (
           item['hasTakeOff'] !== 1 &&
           !item['flightCanceled'] &&
-          item['preLoad'] - Math.max(item.loadNumber, item.boardID) > 0
+          Number(item['preLoad']) - Math.max(Number(item.loadNumber), Number(item.boardID)) > 0
         ) {
           this.WarningData.forEach(p => {
             const startTime = this.formatTime(timeInZone((p.startDate ?? '').replace('T', ' '), this.timeZone), 2)
@@ -463,28 +463,28 @@ export default {
             if (Number(startTime) - Number(curTime) < 0 && Number(endTime) - Number(curTime) > 0) {
               const newItem = _.cloneDeep(item)
               if (p.flightNO && p.flightNO == item.flightNO) {
-                if (p.warningDuration && capTime - p.warningDuration < 0 && capTime - p.alarmDuration > 0) {
-                  item['warning'] = item['preLoad'] - Math.max(item.loadNumber, item.boardID)
+                if (p.warningDuration && capTime - Number(p.warningDuration) < 0 && capTime - Number(p.alarmDuration) > 0) {
+                  item['warning'] = Number(item['preLoad']) - Math.max(Number(item.loadNumber), Number(item.boardID))
                   item['warningState'] = 1
                   const returnedTarget = Object.assign(newItem, p)
                   this.sendLog(returnedTarget)
                 }
-                if (p.alarmDuration && capTime - p.alarmDuration < 0) {
-                  item['warning'] = item['preLoad'] - Math.max(item.loadNumber, item.boardID)
+                if (p.alarmDuration && capTime - Number(p.alarmDuration) < 0) {
+                  item['warning'] = Number(item['preLoad']) - Math.max(Number(item.loadNumber), Number(item.boardID))
                   item['warningState'] = 2
                   const returnedTarget = Object.assign(newItem, p)
                   this.sendLog(returnedTarget)
                 }
               } else if (!p.flightNO && p.IATACode) {
                 if (newItem.flightNO.substring(0, 2) == p.IATACode) {
-                  if (p.warningDuration && capTime - p.warningDuration < 0 && capTime - p.alarmDuration > 0) {
-                    item['warning'] = item['preLoad'] - Math.max(item.loadNumber, item.boardID)
+                  if (p.warningDuration && capTime - Number(p.warningDuration) < 0 && capTime - Number(p.alarmDuration) > 0) {
+                    item['warning'] = Number(item['preLoad']) - Math.max(Number(item.loadNumber), Number(item.boardID))
                     item['warningState'] = 1
                     const returnedTarget = Object.assign(newItem, p)
                     this.sendLog(returnedTarget)
                   }
-                  if (p.alarmDuration && capTime - p.alarmDuration < 0) {
-                    item['warning'] = item['preLoad'] - Math.max(item.loadNumber, item.boardID)
+                  if (p.alarmDuration && capTime - Number(p.alarmDuration) < 0) {
+                    item['warning'] = Number(item['preLoad']) - Math.max(Number(item.loadNumber), Number(item.boardID))
                     item['warningState'] = 2
                     const returnedTarget = Object.assign(newItem, p)
                     this.sendLog(returnedTarget)
@@ -535,11 +535,11 @@ export default {
     setTableScroll () {
       this.leaveCount = 0
       this.dealedTableData.forEach(row => {
-        if (row['hasTakeOff'] === 1 && !row['flightCanceled']) {
+        if (row['hasTakeOff'] == 1 && !row['flightCanceled']) {
           this.leaveCount++
         }
       })
-      if (!this.singleDay || this.hasSetTableScroll || this.leaveCount === 0) {
+      if (!this.singleDay || this.hasSetTableScroll || this.leaveCount == 0) {
         return
       }
       const table = this.$refs['table'].$el