|
@@ -1,12 +1,203 @@
|
|
|
<template>
|
|
|
- <div>行李流程列表</div>
|
|
|
+ <div class="baggageList">
|
|
|
+ <el-table ref="table" :data="baggageTableData" height="100%" size="mini" border fit :header-cell-class-name="headerCellClass" :header-cell-style="{ color: '#101116' }" :cell-class-name="cellClass" :span-method="tableSpanMethod" @cell-click="cellClickHandler">
|
|
|
+ <el-table-column v-for="item in tableColsCopy" :key="item.index" :prop="item.prop" :label="item.name" :align="item.align || 'center'" :width="item.width" show-overflow-tooltip :fixed="item.fixed">
|
|
|
+ <template slot="header">
|
|
|
+ <div class="cell-content">{{ item.name }}</div>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="cell-content">{{ scope.row[item.prop] }}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import pf from '@/layout/mixin/publicFunc'
|
|
|
+import tableColsMixin from '@/views/flightViewManagement/mixins/tableCols'
|
|
|
export default {
|
|
|
-
|
|
|
+ name: 'BaggageList',
|
|
|
+ mixins: [pf, tableColsMixin],
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ tableCols: [
|
|
|
+ { name: '航班号', prop: 'F1', fixed: true },
|
|
|
+ { name: '航班日期', prop: 'F2', width: 95, fixed: true },
|
|
|
+ // { name: '起飞航站\n起飞时间', prop: 'departureInfo', width: 100 },
|
|
|
+ // { name: '目的航站\n降落时间', prop: 'landingInfo', width: 100 },
|
|
|
+ { name: '旅客舱位', prop: 'U4', width: 70 },
|
|
|
+ { name: '旅客座位号', prop: 'S2' },
|
|
|
+ { name: '值机序号', prop: 'passengerCheckInNumber', width: 70 },
|
|
|
+ { name: '节点标识', prop: 'nodeCode', width: 100 },
|
|
|
+ { name: '节点名称', prop: 'nodeName', width: 70 },
|
|
|
+ { name: '位置标识', prop: 'J8' },
|
|
|
+ { name: '位置描述', prop: 'J6' },
|
|
|
+ { name: '读取时间', prop: 'J5', width: 158 },
|
|
|
+ { name: '结果', prop: 'status', width: 60 },
|
|
|
+ { name: '次级代码', prop: 'J1', width: 70 },
|
|
|
+ { name: '操作人', prop: 'J2', width: 90 },
|
|
|
+ { name: '设备ID', prop: 'J3' },
|
|
|
+ { name: '发往位置', prop: 'J9', width: 70 },
|
|
|
+ { name: '发往位置描述', prop: 'J7', width: 100 },
|
|
|
+ { name: '装载序号', prop: 'Q1', width: 70 },
|
|
|
+ { name: '容器编号', prop: 'U1', width: 110 },
|
|
|
+ { name: '数据来源', prop: 'dataSource' }
|
|
|
+ ],
|
|
|
+ baggageTableData: [],
|
|
|
+ spanArr: [],
|
|
|
+ pos: 0,
|
|
|
+ queryData: {
|
|
|
+ "B2": "3479519535",
|
|
|
+ "F1": "ZH9863",
|
|
|
+ "F2": "2023-02-02"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ this.queryDetails()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async queryDetails (queryData = this.queryData) {
|
|
|
+ function setDataSource (item) {
|
|
|
+ if (item['b_type'] !== 'BSM') {
|
|
|
+ const resourceCode = item['resourceFile']?.slice(-4)
|
|
|
+ switch (resourceCode) {
|
|
|
+ case '0100':
|
|
|
+ if (
|
|
|
+ (item['DeviceCode'] && item['DeviceCode'].toUpperCase() === 'STARHUB') ||
|
|
|
+ (!item['DeviceCode'] && !['LOAD', 'INFL'].includes(item['nodeCode']))
|
|
|
+ ) {
|
|
|
+ item['dataSource'] = 'Manual Load'
|
|
|
+ } else {
|
|
|
+ item['dataSource'] = 'BRS'
|
|
|
+ }
|
|
|
+ break
|
|
|
+ case '0101':
|
|
|
+ item['dataSource'] = 'RFID'
|
|
|
+ break
|
|
|
+ case '0102':
|
|
|
+ item['dataSource'] = '首都机场'
|
|
|
+ break
|
|
|
+ default:
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const dataContent = queryData
|
|
|
+ const newData = Object.entries(dataContent)
|
|
|
+ const datas = []
|
|
|
+ newData.forEach(item => {
|
|
|
+ const obj = {}
|
|
|
+ obj[item[0]] = item[1]
|
|
|
+ datas.push(obj)
|
|
|
+ })
|
|
|
+ try {
|
|
|
+ const baggageDetails = await this.getQueryList(18128, datas, ['B2', 'F1', 'F2'])
|
|
|
+ this.baggageTableData = baggageDetails.map((item, index) => {
|
|
|
+ if (item['dealTime']) {
|
|
|
+ item['dealTime'] = item['dealTime'].replace('T', ' ')
|
|
|
+ }
|
|
|
+ item['departureInfo'] = `${item['departureAirport']}\n${item['departureTime'] ? item['departureTime'].replace('T', '\n') : ''
|
|
|
+ }`
|
|
|
+ item['landingInfo'] = `${item['landingAirport']}\n${item['landingTime'] ? item['landingTime'].replace('T', '\n') : ''
|
|
|
+ }`
|
|
|
+ setDataSource(item)
|
|
|
+ return item
|
|
|
+ })
|
|
|
+ this.initTableData(this.baggageTableData)
|
|
|
+ } catch (error) {
|
|
|
+ this.$message.error('失败')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ initTableData (tableData) {
|
|
|
+ const spanArr = []
|
|
|
+ let pos = 0
|
|
|
+ for (let i = 0; i < tableData.length; i++) {
|
|
|
+ if (i === 0) {
|
|
|
+ spanArr.push(1)
|
|
|
+ } else {
|
|
|
+ if (
|
|
|
+ tableData[i]['F1'] === tableData[i - 1]['F1'] &&
|
|
|
+ tableData[i]['F2'] === tableData[i - 1]['F2'] &&
|
|
|
+ tableData[i]['departureAirport'] === tableData[i - 1]['departureAirport'] &&
|
|
|
+ tableData[i]['landingAirport'] === tableData[i - 1]['landingAirport']
|
|
|
+ ) {
|
|
|
+ spanArr[pos] += 1
|
|
|
+ spanArr.push(0)
|
|
|
+ } else {
|
|
|
+ spanArr.push(1)
|
|
|
+ pos = i
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.spanArr = spanArr
|
|
|
+ this.pos = pos
|
|
|
+ },
|
|
|
+ headerCellClass ({ row, column, rowIndex, columnIndex }) {
|
|
|
+ if (['departureInfo', 'landingInfo'].includes(column.property)) {
|
|
|
+ return 'pre-line'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ cellClass ({ row, column, rowIndex, columnIndex }) {
|
|
|
+ const classes = []
|
|
|
+ if (
|
|
|
+ ['flightNO', 'U_Device_ID'].includes(column.property) &&
|
|
|
+ row[column.property] &&
|
|
|
+ row[column.property] !== 'FBULK'
|
|
|
+ ) {
|
|
|
+ classes.push('cell-click')
|
|
|
+ }
|
|
|
+ if (['departureInfo', 'landingInfo'].includes(column.property)) {
|
|
|
+ classes.push('pre-line')
|
|
|
+ }
|
|
|
+ return classes.join(' ')
|
|
|
+ },
|
|
|
+ cellClickHandler (row, column, cell, event) {
|
|
|
+ if (row[column.property] && row[column.property] !== 'FBULK') {
|
|
|
+ switch (column.property) {
|
|
|
+ case 'flightNO':
|
|
|
+ this.$router.push({
|
|
|
+ path: `${this.$route.path.split('/').slice(0, -1).join('/')}/flightView`,
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ flightDate: row.flightDate
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'U_Device_ID':
|
|
|
+ this.$router.push({
|
|
|
+ path: `${this.$route.path.split('/').slice(0, -1).join('/')}/containerView`,
|
|
|
+ query: {
|
|
|
+ flightNO: row.flightNO,
|
|
|
+ flightDate: row.flightDate,
|
|
|
+ departureAirport: row.departureAirport,
|
|
|
+ landingAirport: row.landingAirport,
|
|
|
+ containerID: row.U_Device_ID
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ default:
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
|
|
|
+ if (['flightNO', 'flightDate', 'departureInfo', 'landingInfo'].includes(column['property'])) {
|
|
|
+ const _row = this.spanArr[rowIndex]
|
|
|
+ const _col = _row > 0 ? 1 : 0
|
|
|
+ return {
|
|
|
+ rowspan: _row,
|
|
|
+ colspan: _col
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.baggageList {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
</style>
|