|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: zk
|
|
|
* @Date: 2022-01-17 10:39:22
|
|
|
- * @LastEditTime: 2022-05-13 11:47:31
|
|
|
+ * @LastEditTime: 2022-05-13 16:31:41
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 离港01
|
|
|
-->
|
|
@@ -214,7 +214,11 @@
|
|
|
:prop="p.statCode"
|
|
|
:label="p.statName"
|
|
|
:formatter="tableFormat"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot="header">
|
|
|
+ <el-tooltip :content="p.statName" placement="top"><span>{{ p.statName }}</span></el-tooltip>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -279,7 +283,7 @@ export default {
|
|
|
label: 'outAicompanyCode2'
|
|
|
},
|
|
|
|
|
|
- orderNum: ['0', '0', '0', '0'], // 默认总数
|
|
|
+ orderNum: ['0', '0', '0', '0', '0', '0'], // 默认总数
|
|
|
// 初始表头
|
|
|
tableCols: [
|
|
|
{
|
|
@@ -424,7 +428,7 @@ export default {
|
|
|
// },
|
|
|
methods: {
|
|
|
cellClass(row, column, rowIndex, columnIndex) {
|
|
|
- if (row.column.property == 'FlightNO' || row.column.property == 'PreFlightNO') {
|
|
|
+ if (['FlightNO', 'PreFlightNO', 'outTransferBaggageCount'].includes(row.column.property)) {
|
|
|
return 'clickCell'
|
|
|
}
|
|
|
},
|
|
@@ -443,8 +447,8 @@ export default {
|
|
|
this.$router.push({
|
|
|
path: '/advance',
|
|
|
query: {
|
|
|
- FlightNO: row.FlightNO,
|
|
|
- transferDeparture: row.TransferFlightNO,
|
|
|
+ FlightNO: row.PreFlightNO,
|
|
|
+ transferDeparture: row.FlightNO,
|
|
|
startDate: row.FlightDate,
|
|
|
endDate: row.FlightDate
|
|
|
}
|
|
@@ -630,7 +634,7 @@ export default {
|
|
|
})
|
|
|
tableData.forEach(item => {
|
|
|
Object.keys(tempSets).forEach(key => {
|
|
|
- ;(item[key] ?? '') !== '' && tempSets[key].add(item[key])
|
|
|
+ (item[key] ?? '') !== '' && tempSets[key].add(item[key])
|
|
|
})
|
|
|
})
|
|
|
Object.keys(tempSets).forEach(key => {
|
|
@@ -659,10 +663,10 @@ export default {
|
|
|
|
|
|
toOrderNum(num) {
|
|
|
num = num.toString()
|
|
|
- if (num.length < 4) {
|
|
|
+ if (num.length < 6) {
|
|
|
num = '0' + num // 如未满八位数,添加"0"补位
|
|
|
this.toOrderNum(num) // 递归添加"0"补位
|
|
|
- } else if (num.length === 4) {
|
|
|
+ } else if (num.length >= 6) {
|
|
|
this.orderNum = num.split('') // 将其便变成数据,渲染至滚动数组
|
|
|
} else {
|
|
|
// 订单总量数字超过八位显示异常
|
|
@@ -691,9 +695,7 @@ export default {
|
|
|
'StandForDepartrue',
|
|
|
'outTransferBaggageCount',
|
|
|
'outTransferredBaggageCount',
|
|
|
- 'timeDifference',
|
|
|
- 'inTransferBaggageCount',
|
|
|
- 'inTransferredBaggageCount'
|
|
|
+ 'timeDifference'
|
|
|
].includes(column['property'])
|
|
|
) {
|
|
|
const _row = this.spanArr[rowIndex]
|
|
@@ -705,7 +707,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
arraySpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
|
- for (let i = 0; i < 5; i++) {
|
|
|
+ for (let i = 0; i < 9; i++) {
|
|
|
if (columnIndex === i) {
|
|
|
const _row = this.spanArr[rowIndex]
|
|
|
const _col = _row > 0 ? 1 : 0
|
|
@@ -724,7 +726,7 @@ export default {
|
|
|
// return [0, 0];
|
|
|
// }
|
|
|
// } else if (columnIndex == 1) {
|
|
|
- // // 第二列的大于3行的清除,避免影响样式
|
|
|
+ // // 第二列的大于3行的清除,避免影响样式
|
|
|
|
|
|
// if (rowIndex >= 3) {
|
|
|
// return [0, 0];
|