|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="baggageList">
|
|
|
+ <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">
|
|
@@ -10,15 +10,38 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-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 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 },
|
|
|
props: {
|
|
|
query: {
|
|
|
type: Object,
|
|
@@ -41,27 +64,23 @@ export default {
|
|
|
{ name: '值机序号', prop: 'checkin_number', 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' }
|
|
|
+ { 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 }
|
|
|
],
|
|
|
baggageTableData: [],
|
|
|
spanArr: [],
|
|
|
pos: 0,
|
|
|
- queryData: {
|
|
|
- "B2": "3479519535",
|
|
|
- "F1": "ZH9863",
|
|
|
- "F2": "2023-02-02"
|
|
|
- }
|
|
|
+ loading: false
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|
|
@@ -70,6 +89,7 @@ export default {
|
|
|
methods: {
|
|
|
async queryDetails () {
|
|
|
try {
|
|
|
+ this.loading = true
|
|
|
const { code, returnData } = await this.getQueryList(SERVICE_ID.bagDetailId, this.query)
|
|
|
if (code == 0 && returnData && returnData.length) {
|
|
|
this.baggageTableData = returnData.map((item, index) => {
|
|
@@ -83,8 +103,12 @@ export default {
|
|
|
return item
|
|
|
})
|
|
|
this.initTableData(this.baggageTableData)
|
|
|
+ this.loading = false
|
|
|
+ } else {
|
|
|
+ this.loading = false
|
|
|
}
|
|
|
} catch (error) {
|
|
|
+ this.loading = false
|
|
|
console.log(error)
|
|
|
this.$message.error('失败')
|
|
|
}
|
|
@@ -171,6 +195,12 @@ 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`
|
|
|
+ throttledExportToExcel(table, tableName, fileName)
|
|
|
+ },
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -178,5 +208,15 @@ export default {
|
|
|
<style lang="scss" scoped>
|
|
|
.baggageList {
|
|
|
height: 100%;
|
|
|
+ position: relative;
|
|
|
+ .btns {
|
|
|
+ position: absolute;
|
|
|
+ top: -50px;
|
|
|
+ right: 24px;
|
|
|
+ z-index: 10;
|
|
|
+ .r16 {
|
|
|
+ margin-right: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|