|
@@ -141,7 +141,6 @@ export default {
|
|
|
'special',
|
|
|
'claim',
|
|
|
'uninstalled',
|
|
|
- 'to_be_uninstalled',
|
|
|
'terminateArrive',
|
|
|
'terminatedNotArrived',
|
|
|
'delivered',
|
|
@@ -220,6 +219,7 @@ export default {
|
|
|
'projectedLoad',
|
|
|
'loadedQuantity',
|
|
|
'numberOfDestinationArrivals',
|
|
|
+ 'uninstalled',
|
|
|
'noBSM'
|
|
|
].includes(column.property) &&
|
|
|
row[column.property]
|
|
@@ -266,6 +266,7 @@ export default {
|
|
|
'projectedLoad',
|
|
|
'loadedQuantity',
|
|
|
'numberOfDestinationArrivals',
|
|
|
+ 'uninstalled',
|
|
|
'noBSM'
|
|
|
].includes(column.property) &&
|
|
|
row[column.property]
|
|
@@ -478,17 +479,26 @@ export default {
|
|
|
}
|
|
|
break
|
|
|
case 'checkIns':
|
|
|
- this.$router.push({
|
|
|
- path: '/advance',
|
|
|
- query: {
|
|
|
- flightNO: row.flightNO,
|
|
|
- startDate: row.flightDate,
|
|
|
- endDate: row.flightDate,
|
|
|
- departureStation: row.departureAirport,
|
|
|
- destination: this.formData.currentAirport,
|
|
|
- status: '值机'
|
|
|
+ case 'numberOfDestinationArrivals':
|
|
|
+ case 'uninstalled':
|
|
|
+ {
|
|
|
+ const reflect = {
|
|
|
+ checkIns: '值机',
|
|
|
+ numberOfDestinationArrivals: '到达',
|
|
|
+ uninstalled: '卸机'
|
|
|
}
|
|
|
- })
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ startDate: row.flightDate,
|
|
|
+ endDate: row.flightDate,
|
|
|
+ departureStation: row.departureAirport,
|
|
|
+ destination: this.formData.currentAirport,
|
|
|
+ status: reflect[column.property]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
break
|
|
|
case 'projectedLoad':
|
|
|
this.$router.push({
|
|
@@ -518,19 +528,6 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
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
|
|
|
case 'terminateArrivalQuantity':
|
|
|
this.$router.push({
|
|
|
path: '/advance',
|