|
@@ -1,9 +1,6 @@
|
|
|
<template>
|
|
|
<div class="table-wrapper">
|
|
|
- <header
|
|
|
- ref="tableWrapperHeader"
|
|
|
- class="table-header-wrapper"
|
|
|
- >
|
|
|
+ <header ref="tableWrapperHeader" class="table-header-wrapper">
|
|
|
<SecurityCheckHeader
|
|
|
title="航空货物关联统计"
|
|
|
@change="changeHandler"
|
|
@@ -22,163 +19,191 @@
|
|
|
</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: [
|
|
|
{
|
|
|
- prop: 'destination',
|
|
|
- label: '目的地'
|
|
|
+ title: "目的地",
|
|
|
+ dataIndex: "destination",
|
|
|
+ key: "destination",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'totalCount',
|
|
|
- label: '总件数'
|
|
|
+ dataIndex: "totalCount",
|
|
|
+ key: "totalCount",
|
|
|
+ title: "总件数",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'highRisk',
|
|
|
- label: '高风险货物等级',
|
|
|
+ dataIndex: "highRisk",
|
|
|
+ key: "highRisk",
|
|
|
+ title: "高风险货物等级",
|
|
|
children: [
|
|
|
{
|
|
|
- prop: 'highRiskCount',
|
|
|
- label: '件数'
|
|
|
+ dataIndex: "highRiskCount",
|
|
|
+ key: "highRiskCount",
|
|
|
+ title: "件数",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'highRiskRatio',
|
|
|
- label: '占比'
|
|
|
- }
|
|
|
- ]
|
|
|
+ dataIndex: "highRiskRatio",
|
|
|
+ key: "highRiskRatio",
|
|
|
+ title: "占比",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
- prop: 'lowRisk',
|
|
|
- label: '低风险货物等级',
|
|
|
+ dataIndex: "lowRisk",
|
|
|
+ key: "lowRisk",
|
|
|
+ label: "低风险货物等级",
|
|
|
children: [
|
|
|
{
|
|
|
- prop: 'lowRiskCount',
|
|
|
- label: '件数'
|
|
|
+ dataIndex: "lowRiskCount",
|
|
|
+ key: "lowRiskCount",
|
|
|
+ title: "件数",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'lowRiskRatio',
|
|
|
- label: '占比'
|
|
|
- }
|
|
|
- ]
|
|
|
+ dataIndex: "lowRiskRatio",
|
|
|
+ key: "lowRiskRatio",
|
|
|
+ title: "占比",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
- prop: 'priority',
|
|
|
- label: '优先级',
|
|
|
+ dataIndex: "priority",
|
|
|
+ key: "priority",
|
|
|
+ prop: "priority",
|
|
|
+ title: "优先级",
|
|
|
children: [
|
|
|
{
|
|
|
- prop: 'priorityCount',
|
|
|
- label: '件数'
|
|
|
+ dataIndex: "priorityCount",
|
|
|
+ key: "priorityCount",
|
|
|
+ prop: "priorityCount",
|
|
|
+ title: "件数",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'priorityRatio',
|
|
|
- label: '占比'
|
|
|
- }
|
|
|
- ]
|
|
|
+ dataIndex: "priorityRatio",
|
|
|
+ key: "priorityRatio",
|
|
|
+ prop: "priorityRatio",
|
|
|
+ title: "占比",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
- prop: 'normal',
|
|
|
- label: '普通级',
|
|
|
+ dataIndex: "normal",
|
|
|
+ key: "normal",
|
|
|
+ prop: "normal",
|
|
|
+ title: "普通级",
|
|
|
children: [
|
|
|
{
|
|
|
- prop: 'normalCount',
|
|
|
- label: '件数'
|
|
|
+ dataIndex: "normalCount",
|
|
|
+ key: "normalCount",
|
|
|
+ prop: "normalCount",
|
|
|
+ title: "件数",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'normalRatio',
|
|
|
- label: '占比'
|
|
|
- }
|
|
|
- ]
|
|
|
+ dataIndex: "normalRatio",
|
|
|
+ key: "normalRatio",
|
|
|
+ prop: "normalRatio",
|
|
|
+ title: "占比",
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
{
|
|
|
- prop: 'strict',
|
|
|
- label: '严控级',
|
|
|
+ dataIndex: "strict",
|
|
|
+ key: "strict",
|
|
|
+ prop: "strict",
|
|
|
+ title: "严控级",
|
|
|
children: [
|
|
|
{
|
|
|
- prop: 'strictCount',
|
|
|
- label: '件数'
|
|
|
+ dataIndex: "strictCount",
|
|
|
+ key: "strictCount",
|
|
|
+ prop: "strictCount",
|
|
|
+ title: "件数",
|
|
|
},
|
|
|
{
|
|
|
- prop: 'strictRatio',
|
|
|
- label: '占比'
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
+ dataIndex: "strictRatio",
|
|
|
+ key: "strictRatio",
|
|
|
+ prop: "strictRatio",
|
|
|
+ title: "占比",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
],
|
|
|
tableData: [
|
|
|
{
|
|
|
- destination: 'CTU',
|
|
|
+ destination: "CTU",
|
|
|
totalCount: 20000,
|
|
|
highRiskCount: 14000,
|
|
|
- highRiskRatio: '70%',
|
|
|
+ highRiskRatio: "70%",
|
|
|
lowRiskCount: 1000,
|
|
|
- lowRiskRatio: '5%',
|
|
|
+ lowRiskRatio: "5%",
|
|
|
priorityCount: 2000,
|
|
|
- priorityRatio: '10%',
|
|
|
+ priorityRatio: "10%",
|
|
|
normalCount: 2000,
|
|
|
- normalRatio: '10%',
|
|
|
+ normalRatio: "10%",
|
|
|
strictCount: 1000,
|
|
|
- strictRatio: '5%'
|
|
|
+ strictRatio: "5%",
|
|
|
},
|
|
|
{
|
|
|
- destination: 'PEK',
|
|
|
+ destination: "PEK",
|
|
|
totalCount: 20000,
|
|
|
highRiskCount: 14000,
|
|
|
- highRiskRatio: '70%',
|
|
|
+ highRiskRatio: "70%",
|
|
|
lowRiskCount: 1000,
|
|
|
- lowRiskRatio: '5%',
|
|
|
+ lowRiskRatio: "5%",
|
|
|
priorityCount: 2000,
|
|
|
- priorityRatio: '10%',
|
|
|
+ priorityRatio: "10%",
|
|
|
normalCount: 2000,
|
|
|
- normalRatio: '10%',
|
|
|
+ normalRatio: "10%",
|
|
|
strictCount: 1000,
|
|
|
- strictRatio: '5%'
|
|
|
+ strictRatio: "5%",
|
|
|
},
|
|
|
{
|
|
|
- destination: 'NZH',
|
|
|
+ destination: "NZH",
|
|
|
totalCount: 20000,
|
|
|
highRiskCount: 14000,
|
|
|
- highRiskRatio: '70%',
|
|
|
+ highRiskRatio: "70%",
|
|
|
lowRiskCount: 1000,
|
|
|
- lowRiskRatio: '5%',
|
|
|
+ lowRiskRatio: "5%",
|
|
|
priorityCount: 2000,
|
|
|
- priorityRatio: '10%',
|
|
|
+ priorityRatio: "10%",
|
|
|
normalCount: 2000,
|
|
|
- normalRatio: '10%',
|
|
|
+ normalRatio: "10%",
|
|
|
strictCount: 1000,
|
|
|
- strictRatio: '5%'
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
+ strictRatio: "5%",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
},
|
|
|
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: {
|
|
|
changeHandler() {
|
|
|
this.$router.push({
|
|
|
- path: './cargoCharts'
|
|
|
- })
|
|
|
+ path: "./cargoCharts",
|
|
|
+ });
|
|
|
},
|
|
|
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>
|