|
@@ -82,7 +82,7 @@
|
|
|
<containerTable :msgContent="legTable" />
|
|
|
</div>
|
|
|
</div>
|
|
|
- <flightTable />
|
|
|
+ <flightTable :msgObj="infoObj" :msgContent="flightTable" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -105,7 +105,9 @@ export default {
|
|
|
deArrs: [],
|
|
|
deArrsNum: [],
|
|
|
loading: false,
|
|
|
- legTable: []
|
|
|
+ legTable: [],
|
|
|
+ flightTable: [],
|
|
|
+ pageAuthtables: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -113,7 +115,44 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
//选中
|
|
|
- checkChange () { },
|
|
|
+ async checkChange (arr) {
|
|
|
+ try {
|
|
|
+ const ndata = []
|
|
|
+ const result = [...arr]
|
|
|
+ if (result?.length) {
|
|
|
+ this.loading = true
|
|
|
+ const setData = Array.from(new Set(result.join("-").split("-")))
|
|
|
+ this.deArrsNum.forEach((item) => {
|
|
|
+ setData.forEach((p) => {
|
|
|
+ if (item.item == p) {
|
|
|
+ const obj = {
|
|
|
+ name: item.item,
|
|
|
+ index: item.index,
|
|
|
+ };
|
|
|
+ ndata.push(obj)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ const caps = ndata.sort((a, b) => a.index - b.index)
|
|
|
+ const [c4, c5] = [caps[0].name, caps[caps.length - 1].name]
|
|
|
+ const newPrams = _.cloneDeep(this.flightObj)
|
|
|
+ const [tb1, tb2] = [_.cloneDeep(this.legTable), _.cloneDeep(this.flightTable)]
|
|
|
+ newPrams.outAirport = c4
|
|
|
+ newPrams.landAirport = c5
|
|
|
+ tb1[0].nfilter = newPrams
|
|
|
+ this.legTable = tb1
|
|
|
+ tb2[0].nfilter = newPrams
|
|
|
+ this.flightTable = tb2
|
|
|
+ const res = await this.getLegInfo(111, newPrams)
|
|
|
+ if (res && res.length) {
|
|
|
+ this.infoObj = res[0]
|
|
|
+ }
|
|
|
+ this.loading = false
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error)
|
|
|
+ }
|
|
|
+ },
|
|
|
// 显示日期
|
|
|
formatTime (datetime) {
|
|
|
return datetime?.replace("T", " ") ?? "";
|
|
@@ -133,9 +172,9 @@ export default {
|
|
|
}
|
|
|
return query;
|
|
|
},
|
|
|
- async getLegInfo (dataParams, event = 0, key = '') {
|
|
|
+ async getLegInfo (id, dataParams, event = 0, key = '') {
|
|
|
const params = {
|
|
|
- serviceid: 114,
|
|
|
+ serviceid: id,
|
|
|
datacontent: { filter: dataParams },
|
|
|
event,
|
|
|
}
|
|
@@ -160,7 +199,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
this.deArrs = infoArrs
|
|
|
- const m = combine(this.deArrs, "outAirport", "landAirport");
|
|
|
+ const m = combine(this.deArrs, "outAirport", "landAirport")
|
|
|
m.forEach((item, index) => {
|
|
|
checkDatas.push(`${m[index]}-${m[index + 1]}`);
|
|
|
const obj = {
|
|
@@ -169,13 +208,25 @@ export default {
|
|
|
};
|
|
|
this.deArrsNum.push(obj);
|
|
|
});
|
|
|
- this.checkStates = m;
|
|
|
- const [a1, a2] = [m[0], m[m.length - 1]];
|
|
|
- const { outAirport, landAirport } = this.infoObj;
|
|
|
+ this.checkStates = m
|
|
|
+ },
|
|
|
+ setCheckInfo (infos) {
|
|
|
+ const m = [...infos]
|
|
|
+ const [a1, a2] = [m[0], m[m.length - 1]]
|
|
|
+ const { outAirport, landAirport } = this.infoObj
|
|
|
if (a1 == outAirport && a2 == landAirport) {
|
|
|
- this.checkList = checkDatas.splice(0, m.length - 1);
|
|
|
+ this.checkList = checkDatas.splice(0, m.length - 1)
|
|
|
} else {
|
|
|
- this.checkList = [`${outAirport}-${landAirport}`];
|
|
|
+ this.checkList = [`${outAirport}-${landAirport}`]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ setTableData (dataParams) {
|
|
|
+ if (this.pageAuthtables?.length) {
|
|
|
+ this.pageAuthtables.map(item => {
|
|
|
+ item.nfilter = dataParams
|
|
|
+ })
|
|
|
+ this.legTable = this.pageAuthtables.filter(item => item.serviceid == 112)
|
|
|
+ this.flightTable = this.pageAuthtables.filter(item => item.serviceid == 113)
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -191,6 +242,7 @@ export default {
|
|
|
if (!pageAuthArrs.length) return
|
|
|
//获取table权限
|
|
|
const pageAuthtables = pageAuthArrs.filter(item => item.pagetype == 'table')
|
|
|
+ this.pageAuthtables = pageAuthtables
|
|
|
const np = [
|
|
|
{
|
|
|
k1: "inflightNo",
|
|
@@ -212,16 +264,16 @@ export default {
|
|
|
this.loading = true
|
|
|
const nq = this.formatParams(np, { ...query })
|
|
|
this.flightObj = { ...nq }
|
|
|
- if (pageAuthtables?.length) {
|
|
|
- pageAuthtables.map(item => {
|
|
|
- item.nfilter = { ...nq }
|
|
|
- })
|
|
|
- this.legTable = pageAuthtables.filter(item => item.serviceid == 112)
|
|
|
- }
|
|
|
- const legInfo = await this.getLegInfo(nq)
|
|
|
+ const legInfo = await this.getLegInfo(114, nq)
|
|
|
if (legInfo?.length) {
|
|
|
- this.infoObj = [...legInfo][0]
|
|
|
this.setLegInfo([...legInfo])
|
|
|
+ const dataParams = Object.assign({ ...nq }, { outAirport: this.checkStates[0], landAirport: this.checkStates[1] })
|
|
|
+ this.setTableData(dataParams)
|
|
|
+ const dataInfo = await this.getLegInfo(111, dataParams)
|
|
|
+ if (dataInfo?.length) {
|
|
|
+ this.infoObj = dataInfo[0]
|
|
|
+ this.setCheckInfo(this.checkStates)
|
|
|
+ }
|
|
|
}
|
|
|
this.loading = false
|
|
|
}
|
|
@@ -283,25 +335,5 @@ export default {
|
|
|
margin-top: 8px;
|
|
|
}
|
|
|
}
|
|
|
- &-right {
|
|
|
- flex: 1;
|
|
|
- height: 100%;
|
|
|
- width: calc(100% - 416px);
|
|
|
- &-top {
|
|
|
- padding: 18px 0;
|
|
|
- &-left {
|
|
|
- line-height: 30px;
|
|
|
- }
|
|
|
- &-right {
|
|
|
- padding-right: 70px;
|
|
|
- .btn-img {
|
|
|
- margin-left: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- &-bottom {
|
|
|
- height: calc(100% - 68px);
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
</style>
|