|
@@ -8,7 +8,9 @@
|
|
|
<div class="newFlightView-left-top-top-title-no">{{ flightObj.flightNo }}</div>
|
|
|
</div>
|
|
|
<div class="newFlightView-left-top-top-status">
|
|
|
- PEK-<el-radio v-model="radio" label="1" />-NKG- <el-radio v-model="radio" label="1" />-STU- -HGH- -
|
|
|
+ <el-checkbox-group v-model="checkList">
|
|
|
+ PEK-<el-checkbox label="复选框 A" />-NKG- -STU- -HGH- -
|
|
|
+ </el-checkbox-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newFlightView-left-top-list">
|
|
@@ -39,7 +41,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newFlightView-left-bottom">
|
|
|
- <Table tableName="容器列表" />
|
|
|
+ <Table :tableTag="table1" tableName="容器列表" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newFlightView-right">
|
|
@@ -59,7 +61,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newFlightView-right-bottom">
|
|
|
- <Table ref="table" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" />
|
|
|
+ <Table :tableTag="table2" ref="table" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -95,7 +97,11 @@ export default {
|
|
|
value: '',
|
|
|
dataContent: {},
|
|
|
flightObj: {},
|
|
|
- infoObj: {}
|
|
|
+ infoObj: {},
|
|
|
+ checkList: [],
|
|
|
+ checkStates: [],
|
|
|
+ table1: {},
|
|
|
+ table2: {}
|
|
|
}
|
|
|
},
|
|
|
async created () {
|
|
@@ -106,7 +112,22 @@ export default {
|
|
|
const res = await this.getViewInfo(query)
|
|
|
this.infoObj = res[0]
|
|
|
const sts = await this.getViewInfo({ flightNo, flightDate })
|
|
|
- console.log(sts)
|
|
|
+ if (sts && sts.length) {
|
|
|
+ for (const p of sts) {
|
|
|
+ const { depStation_iataCd, arrStation_iataCd } = p
|
|
|
+ this.checkStates.push({
|
|
|
+ depStation_iataCd,
|
|
|
+ arrStation_iataCd
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ const { flightNo, flightDate } = this.flightObj
|
|
|
+ this.table1 = {
|
|
|
+ flightNo,
|
|
|
+ flightDate
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
// 获取基本信息
|
|
@@ -124,8 +145,9 @@ export default {
|
|
|
},
|
|
|
// 导出
|
|
|
exportHandler (refName, tableName) {
|
|
|
+ const { flightNo, flightDate, depStation_iataCd, arrStation_iataCd } = this.flightObj
|
|
|
const table = this.$refs[refName].$el.cloneNode(true);
|
|
|
- const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
|
|
|
+ const fileName = `${tableName}-${flightNo}-${flightDate}-${depStation_iataCd}-${arrStation_iataCd}.xlsx`;
|
|
|
throttledExportToExcel(table, tableName, fileName);
|
|
|
},
|
|
|
}
|
|
@@ -163,9 +185,12 @@ export default {
|
|
|
font-family: Microsoft YaHei;
|
|
|
font-weight: bold;
|
|
|
color: #101116;
|
|
|
- ::v-deep .el-radio {
|
|
|
- margin-right: 0;
|
|
|
- .el-radio__label {
|
|
|
+ ::v-deep .el-checkbox-group {
|
|
|
+ font-size: initial;
|
|
|
+ .el-checkbox__inner {
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+ .el-checkbox__label {
|
|
|
display: none;
|
|
|
}
|
|
|
}
|