浏览代码

航站视图-排序修改

zhongxiaoyu 1 年之前
父节点
当前提交
4d90652d06
共有 1 个文件被更改,包括 2 次插入2 次删除
  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