|
@@ -504,27 +504,41 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
- '$route.query': {
|
|
|
- handler(query) {
|
|
|
- this.queryData = query
|
|
|
+ $route: {
|
|
|
+ handler({ path, query }) {
|
|
|
+ if (path.includes('baggageView')) {
|
|
|
+ const { flightNO, flightDate, bagSN } = query
|
|
|
+ if (flightNO && flightDate && bagSN) {
|
|
|
+ const { flightNO: oldFlightNO, flightDate: oldFlightDate, bagSN: oldBagSN } = this.queryData
|
|
|
+ if (flightNO !== oldFlightNO || flightDate !== oldFlightDate || bagSN !== oldBagSN) {
|
|
|
+ this.queryData = { flightNO, flightDate, bagSN }
|
|
|
+ this.infoBtn = this.infoRadios[0]
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.$router.push('/advance')
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
deep: true,
|
|
|
immediate: true
|
|
|
},
|
|
|
- infoBtn(val) {
|
|
|
- this.clearIntervalAll()
|
|
|
- const that = this
|
|
|
- if (val === this.infoRadios[0]) {
|
|
|
- this.queryBaggageAll()
|
|
|
- this.loopEvent = setInterval(function () {
|
|
|
- that.queryBaggageAll()
|
|
|
- }, 3000)
|
|
|
- } else if (val === this.infoRadios[1]) {
|
|
|
- this.baggageMessageQuery()
|
|
|
- this.queryMessageLoop = setInterval(function () {
|
|
|
- that.baggageMessageQuery()
|
|
|
- }, 3000)
|
|
|
- }
|
|
|
+ infoBtn: {
|
|
|
+ handler(val) {
|
|
|
+ this.clearIntervalAll()
|
|
|
+ const that = this
|
|
|
+ if (val === this.infoRadios[0]) {
|
|
|
+ this.queryBaggageAll()
|
|
|
+ this.loopEvent = setInterval(function () {
|
|
|
+ that.queryBaggageAll()
|
|
|
+ }, 3000)
|
|
|
+ } else if (val === this.infoRadios[1]) {
|
|
|
+ this.baggageMessageQuery()
|
|
|
+ this.queryMessageLoop = setInterval(function () {
|
|
|
+ that.baggageMessageQuery()
|
|
|
+ }, 3000)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ immediate: true
|
|
|
},
|
|
|
hoveredRow: {
|
|
|
handler(row) {
|
|
@@ -536,12 +550,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
activated() {
|
|
|
- const { flightNO, flightDate, bagSN } = this.queryData
|
|
|
- if (flightNO && flightDate && bagSN) {
|
|
|
- this.infoBtn = this.infoRadios[0]
|
|
|
- } else {
|
|
|
- this.$router.push('/advance')
|
|
|
- }
|
|
|
this.basicInfoHeight = this.$refs['basicInfo'].offsetHeight
|
|
|
this.$refs['table']?.doLayout()
|
|
|
},
|
|
@@ -550,10 +558,10 @@ export default {
|
|
|
this.$refs['table']?.doLayout()
|
|
|
},
|
|
|
deactivated() {
|
|
|
- this.infoBtn = ''
|
|
|
+ this.clearIntervalAll()
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
- this.infoBtn = ''
|
|
|
+ this.clearIntervalAll()
|
|
|
},
|
|
|
methods: {
|
|
|
clearIntervalAll() {
|