|
@@ -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
|