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