|
@@ -216,6 +216,9 @@ export default {
|
|
|
'loadNumber',
|
|
|
'boardID',
|
|
|
// 'checkIns',
|
|
|
+ 'projectedLoad',
|
|
|
+ 'loadedQuantity',
|
|
|
+ 'numberOfDestinationArrivals',
|
|
|
'noBSM'
|
|
|
].includes(column.property) &&
|
|
|
row[column.property]
|
|
@@ -258,6 +261,9 @@ export default {
|
|
|
'loadNumber',
|
|
|
'boardID',
|
|
|
// 'checkIns',
|
|
|
+ 'projectedLoad',
|
|
|
+ 'loadedQuantity',
|
|
|
+ 'numberOfDestinationArrivals',
|
|
|
'noBSM'
|
|
|
].includes(column.property)
|
|
|
) {
|
|
@@ -446,26 +452,27 @@ export default {
|
|
|
case 'checkNumber':
|
|
|
case 'sortNumber':
|
|
|
case 'loadNumber':
|
|
|
- case 'boardID': {
|
|
|
- const reflect = {
|
|
|
- checkNumber: '安检',
|
|
|
- sortNumber: '分拣',
|
|
|
- loadNumber: '装车',
|
|
|
- boardID: '装机'
|
|
|
- }
|
|
|
- this.$router.push({
|
|
|
- path: '/advance',
|
|
|
- query: {
|
|
|
- flightNO: row.flightNO,
|
|
|
- startDate: row.flightDate,
|
|
|
- endDate: row.flightDate,
|
|
|
- departureStation: this.formData.currentAirport,
|
|
|
- destination: row.targetAirport,
|
|
|
- status: reflect[column.property]
|
|
|
+ case 'boardID':
|
|
|
+ {
|
|
|
+ const reflect = {
|
|
|
+ checkNumber: '安检',
|
|
|
+ sortNumber: '分拣',
|
|
|
+ loadNumber: '装车',
|
|
|
+ boardID: '装机'
|
|
|
}
|
|
|
- })
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ startDate: row.flightDate,
|
|
|
+ endDate: row.flightDate,
|
|
|
+ departureStation: this.formData.currentAirport,
|
|
|
+ destination: row.targetAirport,
|
|
|
+ status: reflect[column.property]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
break
|
|
|
- }
|
|
|
// case 'checkIns':
|
|
|
// this.$router.push({
|
|
|
// path: '/advance',
|
|
@@ -479,6 +486,47 @@ export default {
|
|
|
// }
|
|
|
// })
|
|
|
// break
|
|
|
+ case 'projectedLoad':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ startDate: row.flightDate,
|
|
|
+ endDate: row.flightDate,
|
|
|
+ departureStation: row.departureAirport,
|
|
|
+ destination: this.formData.currentAirport,
|
|
|
+ active: 1,
|
|
|
+ canceled: 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'loadedQuantity':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ startDate: row.flightDate,
|
|
|
+ endDate: row.flightDate,
|
|
|
+ departureStation: row.departureAirport,
|
|
|
+ destination: this.formData.currentAirport,
|
|
|
+ status: '装机',
|
|
|
+ canceled: 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'numberOfDestinationArrivals':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ startDate: row.flightDate,
|
|
|
+ endDate: row.flightDate,
|
|
|
+ departureStation: row.departureAirport,
|
|
|
+ destination: this.formData.currentAirport,
|
|
|
+ status: '到达'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
default:
|
|
|
break
|
|
|
}
|