Browse Source

航站视图-排序修改

zhongxiaoyu 1 year ago
parent
commit
4d90652d06
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/newQuery/components/table.vue

+ 2 - 2
src/views/newQuery/components/table.vue

@@ -442,7 +442,7 @@ export default {
             this.leaveCount++
           }
         })
-        this.tableData = _.orderBy(cData, ['canceled', 'scheduleTakeOffTime', 'normalState'], ['desc', 'asc', 'desc']);
+        this.tableData = _.orderBy(cData, ['canceled', 'hasTakenOff', 'scheduleTakeOffTime'], ['desc', 'asc', 'asc']);
       }
       if (this.$route.path == '/newArrival') {
         this.arriveCount = 0
@@ -456,7 +456,7 @@ export default {
             this.arriveCount++
           }
         })
-        this.tableData = _.orderBy(cData, ['canceled', 'actualLandInTime', 'normalState'], ['desc', 'asc', 'desc'])
+        this.tableData = _.orderBy(cData, ['canceled', 'hasLanded', 'actualLandInTime'], ['desc', 'asc', 'asc'])
       }
       if (this.$route.path.startsWith('/newTransfer')) {
         this.leaveCount = 0