|
@@ -97,6 +97,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async created () {
|
|
|
+ const checkDatas = []
|
|
|
const query = this.$route.query
|
|
|
const { flightNo, flightDate } = query
|
|
|
this.flightObj = query
|
|
@@ -117,6 +118,7 @@ export default {
|
|
|
if (newDatas && newDatas.length) {
|
|
|
const m = combine(newDatas, 'depStation_iataCd', 'arrStation_iataCd')
|
|
|
m.forEach((item, index) => {
|
|
|
+ checkDatas.push(`${m[index]}-${m[index + 1]}`)
|
|
|
const obj = {
|
|
|
item,
|
|
|
index
|
|
@@ -124,6 +126,7 @@ export default {
|
|
|
this.deArrsNum.push(obj)
|
|
|
})
|
|
|
this.checkStates = m
|
|
|
+ this.checkList = checkDatas.splice(0, m.length - 1)
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|