|
@@ -390,7 +390,7 @@ export default {
|
|
|
baggageBasicInfo: {},
|
|
|
dialogVisibledele: false,
|
|
|
active: 2,
|
|
|
- infoBtn: '跟踪信息',
|
|
|
+ infoBtn: '',
|
|
|
infoRadios: ['跟踪信息', '跟踪报文'],
|
|
|
messageList: [
|
|
|
// {
|
|
@@ -504,43 +504,26 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
- $route: {
|
|
|
- handler({ path, query }) {
|
|
|
- clearInterval(this.loopEvent)
|
|
|
- this.loopEvent = null
|
|
|
- clearInterval(this.queryMessageLoop)
|
|
|
- this.queryMessageLoop = null
|
|
|
-
|
|
|
- this.queryData = this._.cloneDeep(query)
|
|
|
- const { flightNO, flightDate, bagSN } = this.queryData
|
|
|
- if (flightNO && flightDate && bagSN) {
|
|
|
- const that = this
|
|
|
- this.queryBaggageAll()
|
|
|
- this.loopEvent = setInterval(function () {
|
|
|
- that.queryBaggageAll()
|
|
|
- }, 3000)
|
|
|
- } else if (path.includes('baggage')) {
|
|
|
- this.$router.push('/advance')
|
|
|
- }
|
|
|
+ '$route.query': {
|
|
|
+ handler(query) {
|
|
|
+ this.queryData = query
|
|
|
},
|
|
|
- deep: true
|
|
|
+ deep: true,
|
|
|
+ immediate: true
|
|
|
},
|
|
|
infoBtn(val) {
|
|
|
+ this.clearIntervalAll()
|
|
|
const that = this
|
|
|
- if (val === '跟踪报文') {
|
|
|
- clearInterval(this.loopEvent)
|
|
|
- this.loopEvent = null
|
|
|
- this.baggageMessageQuery()
|
|
|
- this.queryMessageLoop = setInterval(function () {
|
|
|
- that.baggageMessageQuery()
|
|
|
- }, 5000)
|
|
|
- } else {
|
|
|
- clearInterval(this.queryMessageLoop)
|
|
|
- this.queryMessageLoop = null
|
|
|
+ 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)
|
|
|
}
|
|
|
},
|
|
|
hoveredRow: {
|
|
@@ -552,21 +535,13 @@ export default {
|
|
|
deep: true
|
|
|
}
|
|
|
},
|
|
|
- mounted() {
|
|
|
- this.queryData = this._.cloneDeep(this.$route.query)
|
|
|
+ activated() {
|
|
|
const { flightNO, flightDate, bagSN } = this.queryData
|
|
|
- if (!flightNO || !flightDate || !bagSN) {
|
|
|
- this.$router.push('/advance')
|
|
|
+ if (flightNO && flightDate && bagSN) {
|
|
|
+ this.infoBtn = this.infoRadios[0]
|
|
|
} else {
|
|
|
- const that = this
|
|
|
- this.queryBaggageAll()
|
|
|
- this.loopEvent = setInterval(function () {
|
|
|
- that.queryBaggageAll()
|
|
|
- }, 3000)
|
|
|
+ this.$router.push('/advance')
|
|
|
}
|
|
|
- },
|
|
|
- activated() {
|
|
|
- this.infoBtn = '跟踪信息'
|
|
|
this.basicInfoHeight = this.$refs['basicInfo'].offsetHeight
|
|
|
this.$refs['table']?.doLayout()
|
|
|
},
|
|
@@ -575,18 +550,18 @@ export default {
|
|
|
this.$refs['table']?.doLayout()
|
|
|
},
|
|
|
deactivated() {
|
|
|
- clearInterval(this.loopEvent)
|
|
|
- this.loopEvent = null
|
|
|
- clearInterval(this.queryMessageLoop)
|
|
|
- this.queryMessageLoop = null
|
|
|
+ this.infoBtn = ''
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
- clearInterval(this.loopEvent)
|
|
|
- this.loopEvent = null
|
|
|
- clearInterval(this.queryMessageLoop)
|
|
|
- this.queryMessageLoop = null
|
|
|
+ this.infoBtn = ''
|
|
|
},
|
|
|
methods: {
|
|
|
+ clearIntervalAll() {
|
|
|
+ this.loopEvent && clearInterval(this.loopEvent)
|
|
|
+ this.loopEvent = null
|
|
|
+ this.queryMessageLoop && clearInterval(this.queryMessageLoop)
|
|
|
+ this.queryMessageLoop = null
|
|
|
+ },
|
|
|
// objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
|
// if (columnIndex < 4) {
|
|
|
// const _row = this.spanArr[rowIndex]
|