|
@@ -90,11 +90,12 @@ export default {
|
|
|
checkStates: [],
|
|
|
table1: {},
|
|
|
table2: {},
|
|
|
- showObj: {}
|
|
|
+ showObj: {},
|
|
|
+ deArrs: [],
|
|
|
+ deArrsNum: []
|
|
|
}
|
|
|
},
|
|
|
async created () {
|
|
|
- const datas = []
|
|
|
const query = this.$route.query
|
|
|
const { flightNo, flightDate, depStation_iataCd, arrStation_iataCd } = query
|
|
|
const showObj = {
|
|
@@ -109,65 +110,60 @@ export default {
|
|
|
const res = await this.getViewInfo(query)
|
|
|
this.infoObj = res[0]
|
|
|
const sts = await this.getViewInfo({ flightNo, flightDate })
|
|
|
- // sts.push({
|
|
|
- // depStation_iataCd: 'ADD',
|
|
|
- // arrStation_iataCd: 'HSG'
|
|
|
- // })
|
|
|
- // sts.push({
|
|
|
- // depStation_iataCd: 'HSG',
|
|
|
- // arrStation_iataCd: 'WTQ'
|
|
|
- // })
|
|
|
- // sts.push({
|
|
|
- // depStation_iataCd: 'WTQ',
|
|
|
- // arrStation_iataCd: 'MHK'
|
|
|
- // })
|
|
|
if (sts && sts.length) {
|
|
|
for (const p of sts) {
|
|
|
const { depStation_iataCd, arrStation_iataCd } = p
|
|
|
- datas.push({
|
|
|
+ this.deArrs.push({
|
|
|
depStation_iataCd,
|
|
|
arrStation_iataCd
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
- const newDatas = _.cloneDeep(datas)
|
|
|
- const m = this.combine(newDatas, 'depStation_iataCd', 'arrStation_iataCd')
|
|
|
- const cm = []
|
|
|
- m.forEach((item, index) => {
|
|
|
- const obj = {
|
|
|
- name: item,
|
|
|
- index: index + 1
|
|
|
- }
|
|
|
- cm.push(obj)
|
|
|
- })
|
|
|
- console.log(cm)
|
|
|
- this.checkStates = m
|
|
|
+ const newDatas = _.cloneDeep(this.deArrs)
|
|
|
+ if (newDatas && newDatas.length) {
|
|
|
+ const m = this.combine3(newDatas, 'depStation_iataCd', 'arrStation_iataCd')
|
|
|
+ m.forEach((item, index) => {
|
|
|
+ const obj = {
|
|
|
+ item,
|
|
|
+ index
|
|
|
+ }
|
|
|
+ this.deArrsNum.push(obj)
|
|
|
+ })
|
|
|
+ this.checkStates = m
|
|
|
+ }
|
|
|
},
|
|
|
mounted () {
|
|
|
this.table1 = this.dataContent
|
|
|
this.table2 = this.showObj
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
- combine (array, startKey, endKey, result = []) {
|
|
|
- if (!array.length) {
|
|
|
- return result
|
|
|
- }
|
|
|
- if (result.length) {
|
|
|
- for (let i = 0; i < array.length; i++) {
|
|
|
- if (array[i]?.[startKey] === result[result.length - 1]) {
|
|
|
- const current = array.splice(i, 1)[0]
|
|
|
- result.push(current[endKey])
|
|
|
+ combine3 (array, startKey, endKey) {
|
|
|
+ const caculatedArray = []
|
|
|
+ const weightMap = {}
|
|
|
+ const set = new Set()
|
|
|
+ array.forEach(item => {
|
|
|
+ const caculated = caculatedArray.some(
|
|
|
+ caculatedItem =>
|
|
|
+ item[startKey] === caculatedItem[startKey] &&
|
|
|
+ item[endKey] === caculatedItem[endKey]
|
|
|
+ )
|
|
|
+ if (!caculated) {
|
|
|
+ caculatedArray.push(item)
|
|
|
+ set.add(item[startKey])
|
|
|
+ set.add(item[endKey])
|
|
|
+ if (!weightMap[item[startKey]]) {
|
|
|
+ weightMap[item[startKey]] = 0
|
|
|
}
|
|
|
- if (array[i]?.[endKey] === result[0]) {
|
|
|
- const current = array.splice(i, 1)[0]
|
|
|
- result.unshift(current[startKey])
|
|
|
+ if (weightMap[item[endKey]]) {
|
|
|
+ weightMap[item[endKey]] += 1
|
|
|
+ } else {
|
|
|
+ weightMap[item[endKey]] = 1
|
|
|
}
|
|
|
}
|
|
|
- } else {
|
|
|
- const first = array.pop()
|
|
|
- result.push(first[startKey], first[endKey])
|
|
|
- }
|
|
|
- return this.combine(array, startKey, endKey, result)
|
|
|
+ })
|
|
|
+ const result = [...set]
|
|
|
+ return result.sort((a, b) => weightMap[a] - weightMap[b])
|
|
|
},
|
|
|
// 获取基本信息
|
|
|
async getViewInfo (dataContent = this.dataContent) {
|
|
@@ -191,14 +187,27 @@ export default {
|
|
|
},
|
|
|
// 选中
|
|
|
async checkChange (arr) {
|
|
|
+ const datas = []
|
|
|
const result = [...arr]
|
|
|
if (result && result.length) {
|
|
|
const c1 = result.join('-')
|
|
|
const c2 = c1.split('-')
|
|
|
- console.log(c2)
|
|
|
- const depStation = c2[0]
|
|
|
- const arrStation = c2[c2.length - 1]
|
|
|
- console.log(depStation, arrStation)
|
|
|
+ const c3 = _.uniq(c2)
|
|
|
+ this.deArrsNum.forEach(item => {
|
|
|
+ c3.forEach(p => {
|
|
|
+ if (item.item == p) {
|
|
|
+ const obj = {
|
|
|
+ name: item.item,
|
|
|
+ index: item.index
|
|
|
+ }
|
|
|
+ datas.push(obj)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ const caps = datas.sort((a, b) => a.index - b.index)
|
|
|
+ const c4 = caps[0].name //起飞
|
|
|
+ const c5 = caps[caps.length - 1].name //降落
|
|
|
+ console.log(c4, c5)
|
|
|
}
|
|
|
}
|
|
|
}
|