|
@@ -1,15 +1,13 @@
|
|
|
<template>
|
|
|
<div class="table-wrapper">
|
|
|
- <header
|
|
|
- ref="tableWrapperHeader"
|
|
|
- class="table-header-wrapper"
|
|
|
- >
|
|
|
+ <header ref="tableWrapperHeader" class="table-header-wrapper">
|
|
|
<SecurityCheckHeader
|
|
|
title="运单管理"
|
|
|
:with-change-button="false"
|
|
|
:with-date-picker="false"
|
|
|
:with-select="false"
|
|
|
- :with-input="false"
|
|
|
+ :with-input="true"
|
|
|
+ searchPlaceholder="请输入搜索条件"
|
|
|
:with-export-button="false"
|
|
|
@search="searchHandler"
|
|
|
/>
|
|
@@ -18,146 +16,140 @@
|
|
|
<SecurityCheckTable
|
|
|
:table-cols="tableCols"
|
|
|
:table-data="tableData"
|
|
|
- row-key="waybillNo"
|
|
|
+ row-key="index"
|
|
|
:height="tableHeight"
|
|
|
- with-selection
|
|
|
- with-operate-column
|
|
|
+ show-summary
|
|
|
/>
|
|
|
</main>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import SecurityCheckHeader from '../components/securityCheckHeader.vue'
|
|
|
-import SecurityCheckTable from '../components/securityCheckTable.vue'
|
|
|
+import SecurityCheckHeader from "../components/securityCheckHeader.vue";
|
|
|
+import SecurityCheckTable from "../components/securityCheckTable.vue";
|
|
|
export default {
|
|
|
components: { SecurityCheckHeader, SecurityCheckTable },
|
|
|
data() {
|
|
|
return {
|
|
|
- tableHeight: '50vh',
|
|
|
+ tableHeight: "50vh",
|
|
|
tableCols: [
|
|
|
{
|
|
|
- dataIndex: 'waybillNo',
|
|
|
- key: 'waybillNo',
|
|
|
- title: '运单编号',
|
|
|
- width: 125
|
|
|
+ dataIndex: "waybillNo",
|
|
|
+ key: "waybillNo",
|
|
|
+ title: "运单编号",
|
|
|
+ width: 125,
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'mainWaybillNo',
|
|
|
- key: 'mainWaybillNo',
|
|
|
- title: '航空主运单编号',
|
|
|
- width: 125
|
|
|
+ dataIndex: "mainWaybillNo",
|
|
|
+ key: "mainWaybillNo",
|
|
|
+ title: "航空主运单编号",
|
|
|
+ width: 125,
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'subWaybillNo',
|
|
|
- key: 'subWaybillNo',
|
|
|
- title: '运单编号',
|
|
|
- width: 90
|
|
|
+ dataIndex: "subWaybillNo",
|
|
|
+ key: "subWaybillNo",
|
|
|
+ title: "运单编号",
|
|
|
+ width: 90,
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'cargoName',
|
|
|
- key: 'cargoName',
|
|
|
- title: '品名描述'
|
|
|
+ dataIndex: "cargoName",
|
|
|
+ key: "cargoName",
|
|
|
+ title: "品名描述",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'agent',
|
|
|
- key: 'agent',
|
|
|
- title: '交货发货代理人',
|
|
|
- width: 140
|
|
|
+ dataIndex: "agent",
|
|
|
+ key: "agent",
|
|
|
+ title: "交货发货代理人",
|
|
|
+ width: 140,
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'agentLevel',
|
|
|
- key: 'agentLevel',
|
|
|
- title: '代理人诚信等级',
|
|
|
- width: 125
|
|
|
+ dataIndex: "agentLevel",
|
|
|
+ key: "agentLevel",
|
|
|
+ title: "代理人诚信等级",
|
|
|
+ width: 125,
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'originAirport',
|
|
|
- key: 'originAirport',
|
|
|
- title: '始发站'
|
|
|
+ dataIndex: "originAirport",
|
|
|
+ key: "originAirport",
|
|
|
+ title: "始发站",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'destinationAirport',
|
|
|
- key: 'destinationAirport',
|
|
|
- title: '目的地机场'
|
|
|
+ dataIndex: "destinationAirport",
|
|
|
+ key: "destinationAirport",
|
|
|
+ title: "目的地机场",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'flightNo',
|
|
|
- key: 'flightNo',
|
|
|
- title: '航班号'
|
|
|
+ dataIndex: "flightNo",
|
|
|
+ key: "flightNo",
|
|
|
+ title: "航班号",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'dangerLevel',
|
|
|
- key: 'dangerLevel',
|
|
|
- title: '综合风险等级'
|
|
|
+ dataIndex: "dangerLevel",
|
|
|
+ key: "dangerLevel",
|
|
|
+ title: "综合风险等级",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'cargoDangerLevel',
|
|
|
- key: 'cargoDangerLevel',
|
|
|
- title: '货物风险等级'
|
|
|
+ dataIndex: "cargoDangerLevel",
|
|
|
+ key: "cargoDangerLevel",
|
|
|
+ title: "货物风险等级",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'securityChannel',
|
|
|
- key: 'securityChannel',
|
|
|
- title: '安检通道号'
|
|
|
+ dataIndex: "securityChannel",
|
|
|
+ key: "securityChannel",
|
|
|
+ title: "安检通道号",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'count',
|
|
|
- key: 'count',
|
|
|
- title: '安检件数'
|
|
|
+ dataIndex: "count",
|
|
|
+ key: "count",
|
|
|
+ title: "安检件数",
|
|
|
},
|
|
|
{
|
|
|
- dataIndex: 'weight',
|
|
|
- key: 'weight',
|
|
|
- title: '重量'
|
|
|
+ dataIndex: "weight",
|
|
|
+ key: "weight",
|
|
|
+ title: "重量",
|
|
|
},
|
|
|
- {
|
|
|
- dataIndex: 'operation',
|
|
|
- key: 'operation',
|
|
|
- title: '操作',
|
|
|
- scopedSlots: { customRender: 'operation' },
|
|
|
- width: 120
|
|
|
- }
|
|
|
],
|
|
|
tableData: [
|
|
|
{
|
|
|
- waybillNo: '784-33818776',
|
|
|
- mainWaybillNo: '000',
|
|
|
- subWaybillNo: '111',
|
|
|
- cargoName: '手机保护套',
|
|
|
- agent: 'ETA2013031000',
|
|
|
- agentLevel: 'B',
|
|
|
- originAirport: 'PEK',
|
|
|
- destinationAirport: 'CTU',
|
|
|
- flightNo: 'CZ8023',
|
|
|
- dangerLevel: '普通',
|
|
|
- cargoDangerLevel: '普通',
|
|
|
- securityChannel: '1',
|
|
|
+ waybillNo: "784-33818776",
|
|
|
+ mainWaybillNo: "000",
|
|
|
+ subWaybillNo: "111",
|
|
|
+ cargoName: "手机保护套",
|
|
|
+ agent: "ETA2013031000",
|
|
|
+ agentLevel: "B",
|
|
|
+ originAirport: "PEK",
|
|
|
+ destinationAirport: "CTU",
|
|
|
+ flightNo: "CZ8023",
|
|
|
+ dangerLevel: "普通",
|
|
|
+ cargoDangerLevel: "普通",
|
|
|
+ securityChannel: "1",
|
|
|
count: 10,
|
|
|
- weight: 10
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
+ weight: 10,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.setTableHeight()
|
|
|
- window.addEventListener('resize', this.setTableHeight)
|
|
|
+ this.setTableHeight();
|
|
|
+ window.addEventListener("resize", this.setTableHeight);
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
- window.removeEventListener('resize', this.setTableHeight)
|
|
|
+ window.removeEventListener("resize", this.setTableHeight);
|
|
|
},
|
|
|
methods: {
|
|
|
searchHandler(arr) {
|
|
|
- console.log(arr)
|
|
|
+ console.log(arr);
|
|
|
},
|
|
|
setTableHeight() {
|
|
|
- const topBarHeight = 80
|
|
|
- const headerHeight = this.$refs['tableWrapperHeader'].offsetHeight
|
|
|
- const footerBlackHeight = 24
|
|
|
- this.tableHeight = `calc(100vh - ${topBarHeight + headerHeight + footerBlackHeight}px)`
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
+ const topBarHeight = 80;
|
|
|
+ const headerHeight = this.$refs["tableWrapperHeader"].offsetHeight;
|
|
|
+ const footerBlackHeight = 24;
|
|
|
+ this.tableHeight = `calc(100vh - ${
|
|
|
+ topBarHeight + headerHeight + footerBlackHeight
|
|
|
+ }px)`;
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|