|
@@ -1,47 +1,21 @@
|
|
|
<template>
|
|
|
<div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" 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>
|
|
|
+ <Table style="height:100%" :istableCol="true" :tableTag="tableTag" ref="table" />
|
|
|
<div class="btns">
|
|
|
<img class="btn-square btn-shadow r16" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '行李节点列表')">
|
|
|
- <img class="btn-square btn-shadow" src="@/assets/baggage/ic_setting.png" title="列设置" @click="show">
|
|
|
</div>
|
|
|
- <!--列设置-->
|
|
|
- <Dialog :flag="dialogFlag" class="dialog-check-group">
|
|
|
- <div class="dialog-wrapper">
|
|
|
- <div class="title">列设置</div>
|
|
|
- <div class="content">
|
|
|
- <el-tree ref="columnSetTree" :data="tableCols" :class="colsCheckClass" show-checkbox node-key="index" :default-expand-all="true" :props="{
|
|
|
- label: 'name',
|
|
|
- children: 'children',
|
|
|
- }" :default-checked-keys="checkedKeysTemp" @check="handleCheck" />
|
|
|
- </div>
|
|
|
- <div class="foot right t30">
|
|
|
- <el-button size="medium" class="r24" type="primary" @click="onCheck('baggageTableData')">确定</el-button>
|
|
|
- <el-button size="medium" @click="hide">取消</el-button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </Dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import Table from '../../newQuery/components/table.vue'
|
|
|
import Dialog from '@/layout/components/Dialog/index.vue'
|
|
|
import pf from '@/layout/mixin/publicFunc'
|
|
|
-import tableColsMixin from '@/views/flightViewManagement/mixins/tableCols'
|
|
|
import { throttledExportToExcel } from '@/utils/table'
|
|
|
export default {
|
|
|
name: 'BaggageList',
|
|
|
- mixins: [pf, tableColsMixin],
|
|
|
- components: { Dialog },
|
|
|
+ mixins: [pf],
|
|
|
+ components: { Dialog, Table },
|
|
|
props: {
|
|
|
query: {
|
|
|
type: Object,
|
|
@@ -50,60 +24,39 @@ export default {
|
|
|
tagObj: {
|
|
|
type: Object,
|
|
|
default: () => { }
|
|
|
- }
|
|
|
+ },
|
|
|
+ tableDatas: {
|
|
|
+ type: Array,
|
|
|
+ default: []
|
|
|
+ },
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
- tableCols: [
|
|
|
- { name: '航班号', prop: 'flightNo', fixed: true },
|
|
|
- { name: '航班日期', prop: 'flightDate', width: 95, fixed: true },
|
|
|
- // { name: '起飞航站\n起飞时间', prop: 'departureInfo', width: 100 },
|
|
|
- // { name: '目的航站\n降落时间', prop: 'landingInfo', width: 100 },
|
|
|
- { name: '旅客舱位', prop: 'passenger_cabin', width: 70 },
|
|
|
- { name: '旅客座位号', prop: 'seatNum' },
|
|
|
- { name: '值机序号', prop: 'checkin_number', width: 70 },
|
|
|
- { name: '节点标识', prop: 'nodeCode', width: 100 },
|
|
|
- { name: '节点名称', prop: 'nodeName', width: 70 },
|
|
|
- { name: '位置标识', prop: 'location_code' },
|
|
|
- { name: '位置描述', prop: 'location_describe' },
|
|
|
- { name: '读取时间', prop: 'readTime', width: 158 },
|
|
|
- { name: '结果', prop: 'currentResult', width: 60 },
|
|
|
- { name: '次级代码', prop: 'secondary_code', width: 70 },
|
|
|
- { name: '操作人', prop: 'agentNumber', width: 90 },
|
|
|
- { name: '设备ID', prop: 'device_ID' },
|
|
|
- { name: '发往位置', prop: 'to_location_code', width: 70 },
|
|
|
- { name: '发往位置描述', prop: 'to_location_describe', width: 100 },
|
|
|
- { name: '装载序号', prop: 'loadNumber', width: 70 },
|
|
|
- { name: '容器编号', prop: 'container_ID', width: 110 },
|
|
|
- { name: '数据来源', prop: 'dataObjectId', width: 200 }
|
|
|
- ],
|
|
|
+ tableCols: [],
|
|
|
baggageTableData: [],
|
|
|
spanArr: [],
|
|
|
pos: 0,
|
|
|
loading: false,
|
|
|
- dataContent: {}
|
|
|
+ dataContent: {},
|
|
|
+ tableTag: {}
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
tagObj: {
|
|
|
handler (obj) {
|
|
|
- this.dataContent = obj
|
|
|
- this.queryDetails()
|
|
|
+ this.tableTag = obj
|
|
|
},
|
|
|
deep: true
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
- this.dataContent = this.query
|
|
|
- },
|
|
|
mounted () {
|
|
|
- this.queryDetails()
|
|
|
+ this.tableTag = this.query
|
|
|
},
|
|
|
methods: {
|
|
|
- async queryDetails () {
|
|
|
+ async queryDetails (auth_id) {
|
|
|
try {
|
|
|
this.loading = true
|
|
|
- const { code, returnData } = await this.getQueryList(SERVICE_ID.bagDetailId, this.dataContent)
|
|
|
+ const { code, returnData } = await this.getQueryListAuth(SERVICE_ID.bagDetailId, this.dataContent, 1, 20, auth_id)
|
|
|
if (code == 0 && returnData && returnData.length) {
|
|
|
this.baggageTableData = returnData.map((item, index) => {
|
|
|
if (item['dealTime']) {
|
|
@@ -210,8 +163,8 @@ export default {
|
|
|
},
|
|
|
exportHandler (refName, tableName) {
|
|
|
const table = this.$refs[refName].$el.cloneNode(true)
|
|
|
- const { luggageNum, flightNo, flightDate } = this.query
|
|
|
- const fileName = `${tableName}-${luggageNum}-${flightNo}-${flightDate}.xlsx`
|
|
|
+ const { luggageNum, carrierFlights, carrierFlightsDate } = this.query
|
|
|
+ const fileName = `${tableName}-${luggageNum}-${carrierFlights}-${carrierFlightsDate}.xlsx`
|
|
|
throttledExportToExcel(table, tableName, fileName)
|
|
|
},
|
|
|
}
|
|
@@ -225,7 +178,7 @@ export default {
|
|
|
.btns {
|
|
|
position: absolute;
|
|
|
top: -50px;
|
|
|
- right: 24px;
|
|
|
+ right: 66px;
|
|
|
z-index: 10;
|
|
|
.r16 {
|
|
|
margin-right: 16px;
|