|
@@ -5,7 +5,7 @@
|
|
|
<div class="newFlightView-left-top-top">
|
|
|
<div class="newFlightView-left-top-top-title flex-wrap">
|
|
|
<div class="newFlightView-left-top-top-title-info">航班基本信息</div>
|
|
|
- <div class="newFlightView-left-top-top-title-no">{{ flightObj.flightNo }}</div>
|
|
|
+ <div class="newFlightView-left-top-top-title-no">{{ flightObj.carrierFlights }}</div>
|
|
|
</div>
|
|
|
<div class="newFlightView-left-top-top-status">
|
|
|
<el-scrollbar style="height: 100%">
|
|
@@ -18,7 +18,7 @@
|
|
|
<div class="newFlightView-left-top-list">
|
|
|
<el-descriptions :column="2">
|
|
|
<el-descriptions-item label="起飞机场简称">{{ infoObj.takeoff_airport_name }}</el-descriptions-item>
|
|
|
- <el-descriptions-item label="起飞机场三字码">{{ infoObj.depStation_iataCd }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="起飞机场三字码">{{ infoObj.outAirport }}</el-descriptions-item>
|
|
|
<el-descriptions-item :span="2" label="日期">{{ formatTime(infoObj.actualTakeOffTime,infoObj.estimateTakeOffTime,infoObj.scheduleTakeOffTime) }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="登机口">{{ infoObj.gateCd }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="停机位"> {{ infoObj.depstandCd }}</el-descriptions-item>
|
|
@@ -27,7 +27,7 @@
|
|
|
<div class="newFlightView-left-top-list">
|
|
|
<el-descriptions :column="2">
|
|
|
<el-descriptions-item label="降落机场简称">{{ infoObj.target_airport_name }}</el-descriptions-item>
|
|
|
- <el-descriptions-item label="降落机场三字码">{{ infoObj.arrStation_iataCd }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="降落机场三字码">{{ infoObj.landAirport }}</el-descriptions-item>
|
|
|
<el-descriptions-item :span="2" label="日期">{{ formatTime(infoObj.actualLandInTime,infoObj.estimateLandInTime,infoObj.scheduleLandInTime) }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="提取转盘">{{infoObj.arrcarouselCd}}</el-descriptions-item>
|
|
|
<el-descriptions-item label="停机位"> {{ infoObj.arrstandCd }}</el-descriptions-item>
|
|
@@ -99,24 +99,24 @@ export default {
|
|
|
async created () {
|
|
|
const checkDatas = []
|
|
|
const query = this.$route.query
|
|
|
- const { flightNo, flightDate } = query
|
|
|
+ const { carrierFlights, carrierFlightsDate } = query
|
|
|
this.flightObj = query
|
|
|
this.dataContent = query
|
|
|
const res = await this.getViewInfo(query)
|
|
|
this.infoObj = res[0]
|
|
|
- const sts = await this.getViewInfo({ flightNo, flightDate })
|
|
|
+ const sts = await this.getViewInfo({ carrierFlights, carrierFlightsDate })
|
|
|
if (sts && sts.length) {
|
|
|
for (const p of sts) {
|
|
|
- const { depStation_iataCd, arrStation_iataCd } = p
|
|
|
+ const { outAirport, landAirport } = p
|
|
|
this.deArrs.push({
|
|
|
- depStation_iataCd,
|
|
|
- arrStation_iataCd
|
|
|
+ outAirport,
|
|
|
+ landAirport
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
const newDatas = _.cloneDeep(this.deArrs)
|
|
|
if (newDatas && newDatas.length) {
|
|
|
- const m = combine(newDatas, 'depStation_iataCd', 'arrStation_iataCd')
|
|
|
+ const m = combine(newDatas, 'outAirport', 'landAirport')
|
|
|
m.forEach((item, index) => {
|
|
|
checkDatas.push(`${m[index]}-${m[index + 1]}`)
|
|
|
const obj = {
|
|
@@ -126,7 +126,13 @@ export default {
|
|
|
this.deArrsNum.push(obj)
|
|
|
})
|
|
|
this.checkStates = m
|
|
|
- this.checkList = checkDatas.splice(0, m.length - 1)
|
|
|
+ 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)
|
|
|
+ } else {
|
|
|
+ this.checkList = [`${outAirport}-${landAirport}`]
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|
|
@@ -149,9 +155,9 @@ export default {
|
|
|
},
|
|
|
// 导出
|
|
|
exportHandler (refName, tableName) {
|
|
|
- const { flightNo, flightDate, depStation_iataCd, arrStation_iataCd } = this.flightObj
|
|
|
+ const { carrierFlights, carrierFlightsDate, outAirport, landAirport } = this.flightObj
|
|
|
const table = this.$refs[refName].$el.cloneNode(true);
|
|
|
- const fileName = `${tableName}-${flightNo}-${flightDate}-${depStation_iataCd}-${arrStation_iataCd}.xlsx`;
|
|
|
+ const fileName = `${tableName}-${carrierFlights}-${carrierFlightsDate}-${outAirport}-${landAirport}.xlsx`;
|
|
|
throttledExportToExcel(table, tableName, fileName);
|
|
|
},
|
|
|
// 选中
|
|
@@ -177,8 +183,8 @@ export default {
|
|
|
const c4 = caps[0].name //起飞
|
|
|
const c5 = caps[caps.length - 1].name //降落
|
|
|
const newPrams = _.cloneDeep(this.dataContent)
|
|
|
- newPrams.depStation_iataCd = c4
|
|
|
- newPrams.arrStation_iataCd = c5
|
|
|
+ newPrams.outAirport = c4
|
|
|
+ newPrams.landAirport = c5
|
|
|
this.table1 = newPrams
|
|
|
this.table2 = newPrams
|
|
|
const res = await this.getViewInfo(newPrams)
|