|
@@ -451,32 +451,38 @@ export default {
|
|
|
hasSetTableScroll: false,
|
|
|
spanArr: [],
|
|
|
contactDot: 0,
|
|
|
- flag: 0
|
|
|
+ flag: 0,
|
|
|
+ table: null
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
// this.getAirPortData()
|
|
|
- const { startDate, endDate } = this.$route.query
|
|
|
- Object.entries(this.$route.query).forEach(([key, value]) => {
|
|
|
- if ((value ?? '') !== '' && JSON.stringify(value) !== '[]') {
|
|
|
- this.formData[key] = value
|
|
|
- }
|
|
|
- })
|
|
|
- if (startDate !== null && startDate !== undefined) {
|
|
|
- this.formData.flightDate[0] = startDate
|
|
|
- }
|
|
|
- if (endDate !== null && endDate !== undefined) {
|
|
|
- this.formData.flightDate[1] = endDate
|
|
|
- }
|
|
|
},
|
|
|
mounted() {
|
|
|
-
|
|
|
- },
|
|
|
- activated(){
|
|
|
this.$refs['form'].validateField('flightDate')
|
|
|
this.getAirPortData()
|
|
|
+ this.table = this.$refs.table.bodyWrapper
|
|
|
+ let that = this
|
|
|
+ this.table.addEventListener('scroll', () => {
|
|
|
+ that.scrollTop = this.table.scrollTop
|
|
|
+ })
|
|
|
+ },
|
|
|
+ activated() {
|
|
|
+ this.table.scrollTop = this.scrollTop
|
|
|
+ // const { startDate, endDate } = this.$route.query
|
|
|
+ // Object.entries(this.$route.query).forEach(([key, value]) => {
|
|
|
+ // if ((value ?? '') !== '' && JSON.stringify(value) !== '[]') {
|
|
|
+ // this.formData[key] = value
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+ // if (startDate !== null && startDate !== undefined) {
|
|
|
+ // this.formData.flightDate[0] = startDate
|
|
|
+ // }
|
|
|
+ // if (endDate !== null && endDate !== undefined) {
|
|
|
+ // this.formData.flightDate[1] = endDate
|
|
|
+ // }
|
|
|
},
|
|
|
- deactivated(){
|
|
|
+ deactivated() {
|
|
|
if (this.loopEvent) {
|
|
|
clearInterval(this.loopEvent)
|
|
|
this.loopEvent = null
|
|
@@ -516,7 +522,7 @@ export default {
|
|
|
},
|
|
|
tableRowClassName({ row, rowIndex }) {
|
|
|
const classes = []
|
|
|
- if (row.hasTakenOff) {
|
|
|
+ if (row.hasTakeOff) {
|
|
|
classes.push('bgl-hui')
|
|
|
if (rowIndex === this.leaveCount - 1) {
|
|
|
classes.push('redBorder')
|
|
@@ -525,16 +531,17 @@ export default {
|
|
|
return classes.join(' ')
|
|
|
},
|
|
|
changeView() {
|
|
|
- const query = {
|
|
|
- ...this.formData,
|
|
|
- startDate: this.startDate,
|
|
|
- endDate: this.endDate
|
|
|
- }
|
|
|
- delete query.flightDate
|
|
|
- this.$router.replace({
|
|
|
- path: '/transfer/arrival',
|
|
|
- query
|
|
|
- })
|
|
|
+ // const query = {
|
|
|
+ // ...this.formData,
|
|
|
+ // startDate: this.startDate,
|
|
|
+ // endDate: this.endDate
|
|
|
+ // }
|
|
|
+ // delete query.flightDate
|
|
|
+ // this.$router.replace({
|
|
|
+ // path: '/transfer/arrival',
|
|
|
+ // query
|
|
|
+ // })
|
|
|
+ this.$router.push('/transfer/arrival')
|
|
|
},
|
|
|
airPortChange() {
|
|
|
this.getAviationData()
|
|
@@ -661,7 +668,7 @@ export default {
|
|
|
this.leaveCount = 0
|
|
|
// this.baggageCount = 0
|
|
|
tableData.forEach(item => {
|
|
|
- if (this.hasTakenOff(item)) {
|
|
|
+ if (this.hasTakeOff(item)) {
|
|
|
this.leaveCount++
|
|
|
}
|
|
|
// this.baggageCount = this.baggageCount + item.preLoad
|
|
@@ -677,15 +684,15 @@ export default {
|
|
|
this.setTableScroll()
|
|
|
})
|
|
|
},
|
|
|
- hasTakenOff(flight) {
|
|
|
+ hasTakeOff(flight) {
|
|
|
if (flight.actualDepartureTime) {
|
|
|
const now = new Date()
|
|
|
const actualDepartureTime = new Date(flight.actualDepartureTime.replace('T', ' '))
|
|
|
- flight['hasTakenOff'] = now > actualDepartureTime && !flight['flightCanceled']
|
|
|
+ flight['hasTakeOff'] = now > actualDepartureTime && !flight['flightCanceled']
|
|
|
} else {
|
|
|
- flight['hasTakenOff'] = false
|
|
|
+ flight['hasTakeOff'] = false
|
|
|
}
|
|
|
- return flight['hasTakenOff']
|
|
|
+ return flight['hasTakeOff']
|
|
|
},
|
|
|
setTableScroll() {
|
|
|
if (!this.singleDay || this.hasSetTableScroll || this.leaveCount === 0) {
|