Эх сурвалжийг харах

Merge branch 'master' of http://120.26.64.82:10880/BFFE/dz2.1

zhaoke 1 жил өмнө
parent
commit
f5d7ac3bd8

BIN
src/assets/analysis/bg_a.png


BIN
src/assets/analysis/bg_b.png


BIN
src/assets/analysis/ic.png


BIN
src/assets/analysis/ic_change_statistical.png


BIN
src/assets/analysis/ic_luggage_statistical.png


BIN
src/assets/analysis/ic_time_statistical.png


BIN
src/assets/analysis/pic_triangle_conner.png


+ 107 - 0
src/components/CountBox/index.vue

@@ -0,0 +1,107 @@
+<template>
+  <div class="count-box">
+    <li
+      v-for="(_, index) in numberItems"
+      :key="index"
+      class="number-item"
+    >
+      <span class="number-box">
+        <i
+          ref="numberBoxes"
+          class="number-list"
+          >0123456789.</i
+        >
+      </span>
+    </li>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'CountBox',
+  props: {
+    countNumber: {
+      type: Number,
+      default: 0,
+    },
+    countLength: {
+      type: Number,
+      default: 6,
+      validator(value) {
+        return value > 0
+      },
+    },
+  },
+  computed: {
+    numberItems() {
+      let numberString = this.countNumber.toString()
+      if (numberString.length > this.countLength) {
+        ElMessage.error(`${this.label}过大`)
+        numberString = '9'.repeat(this.countLength)
+      }
+      numberString = '0'.repeat(this.countLength) + numberString
+      return numberString.slice(-this.countLength).split('')
+    },
+  },
+  watch: {
+    numberItems: {
+      handler(items) {
+        const numberBoxes = this.$refs['numberBoxes']
+        for (let index = 0; index < numberBoxes.length; index++) {
+          const box = numberBoxes[index]
+          if (box) {
+            if (items[index] === '.') {
+              box.style.transform = `translate(-50%, -${1000 / 11}%)`
+            } else {
+              box.style.transform = `translate(-50%, -${
+                (Number(items[index]) * 100) / 11
+              }%)`
+            }
+          }
+        }
+      },
+    },
+  },
+}
+</script>
+
+<style scoped lang="scss">
+.count-box {
+  width: 100%;
+  height: 100%;
+  text-align: center;
+  list-style: none;
+  writing-mode: vertical-lr;
+  text-orientation: upright;
+  overflow: hidden;
+  .number-item {
+    width: 48px;
+    height: 100%;
+    list-style: none;
+    background: #323c4c;
+    &:not(:last-child) {
+      margin-right: 8px;
+    }
+    & > .number-box {
+      position: relative;
+      display: inline-block;
+      width: 100%;
+      height: 100%;
+      overflow: hidden;
+      & > .number-list {
+        position: absolute;
+        top: 25%;
+        left: 50%;
+        transform: translate(-50%, 0%);
+        transition: transform 1s ease-in-out;
+        letter-spacing: 14px;
+        font-size: 32px;
+        color: #ffffff;
+        font-family: Helvetica, Microsoft YaHei;
+        font-style: normal;
+        font-weight: bold;
+      }
+    }
+  }
+}
+</style>

+ 80 - 0
src/layout/mixin/commonChartsBar.js

@@ -0,0 +1,80 @@
+/*
+ * @Author: zk
+ * @Date: 2021-09-16 16:20:11
+ * @LastEditTime: 2021-10-15 12:00:29
+ * @LastEditors: Please set LastEditors
+ * @Description: 柱状图初始数据
+ * @FilePath: \vue-admin-template-master\src\layout\mixin\commonChartsLine.js
+ */
+export default {
+  data () {
+    return {
+      options: {
+        color: ['#7569BE'],
+        xAxis: {
+          type: 'category',
+          data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
+        },
+        title: {
+          textStyle: {
+            color: '#303133',
+            fontSize: 24
+          }
+        },
+        yAxis: {
+          type: 'value',
+          axisTick: {
+            show: false
+          },
+          axisLine: {
+            show: false,
+            lineStyle: {
+              color: '#698dc3'
+            }
+          },
+          splitLine: {
+            lineStyle: {
+              type: 'solid',
+              color: '#DCDFE6'
+            }
+          },
+          axisLabel: {
+            color: '#000'
+          }
+        },
+        xAxis: {
+          type: 'category',
+          axisTick: {
+            show: false
+          },
+          axisLine: {
+            show: false,
+            lineStyle: {
+              color: '#698dc3'
+            }
+          },
+          splitLine: {
+            lineStyle: {
+              type: 'solid',
+              color: '#000'
+            }
+          },
+          axisLabel: {
+            color: '#000'
+          }
+        },
+        grid: {
+          top: '66px',
+          bottom: '33px',
+          left: '5%',
+          right: 0
+        },
+        series: [{
+          data: [],
+          type: 'bar',
+          barWidth: 56
+        }]
+      }
+    }
+  }
+}

+ 271 - 0
src/layout/mixin/commonChartsChinaMap.js

@@ -0,0 +1,271 @@
+/*
+ * @Author: your name
+ * @Date: 2021-09-23 11:12:40
+ * @LastEditTime: 2021-09-23 13:43:32
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: \bigDataScreen\src\components\mixin\commonChartsChinaMap.js
+ */
+import '../../utils/china'
+var geoCoordMap = {
+  '上海': [121.4648, 31.2891],
+  '东莞': [113.8953, 22.901],
+  '东营': [118.7073, 37.5513],
+  '中山': [113.4229, 22.478],
+  '临汾': [111.4783, 36.1615],
+  '临沂': [118.3118, 35.2936],
+  '丹东': [124.541, 40.4242],
+  '丽水': [119.5642, 28.1854],
+  '乌鲁木齐': [87.9236, 43.5883],
+  '佛山': [112.8955, 23.1097],
+  '保定': [115.0488, 39.0948],
+  '兰州': [103.5901, 36.3043],
+  '包头': [110.3467, 41.4899],
+  '北京': [116.4551, 40.2539],
+  '北海': [109.314, 21.6211],
+  '南京': [118.8062, 31.9208],
+  '南宁': [108.479, 23.1152],
+  '南昌': [116.0046, 28.6633],
+  '南通': [121.1023, 32.1625],
+  '厦门': [118.1689, 24.6478],
+  '台州': [121.1353, 28.6688],
+  '合肥': [117.29, 32.0581],
+  '呼和浩特': [111.4124, 40.4901],
+  '咸阳': [108.4131, 34.8706],
+  '哈尔滨': [127.9688, 45.368],
+  '唐山': [118.4766, 39.6826],
+  '嘉兴': [120.9155, 30.6354],
+  '大同': [113.7854, 39.8035],
+  '大连': [122.2229, 39.4409],
+  '天津': [117.4219, 39.4189],
+  '太原': [112.3352, 37.9413],
+  '威海': [121.9482, 37.1393],
+  '宁波': [121.5967, 29.6466],
+  '宝鸡': [107.1826, 34.3433],
+  '宿迁': [118.5535, 33.7775],
+  '常州': [119.4543, 31.5582],
+  '广州': [113.5107, 23.2196],
+  '廊坊': [116.521, 39.0509],
+  '延安': [109.1052, 36.4252],
+  '张家口': [115.1477, 40.8527],
+  '徐州': [117.5208, 34.3268],
+  '德州': [116.6858, 37.2107],
+  '惠州': [114.6204, 23.1647],
+  '成都': [103.9526, 30.7617],
+  '扬州': [119.4653, 32.8162],
+  '承德': [117.5757, 41.4075],
+  '拉萨': [91.1865, 30.1465],
+  '无锡': [120.3442, 31.5527],
+  '日照': [119.2786, 35.5023],
+  '昆明': [102.9199, 25.4663],
+  '杭州': [119.5313, 29.8773],
+  '枣庄': [117.323, 34.8926],
+  '柳州': [109.3799, 24.9774],
+  '株洲': [113.5327, 27.0319],
+  '武汉': [114.3896, 30.6628],
+  '汕头': [117.1692, 23.3405],
+  '江门': [112.6318, 22.1484],
+  '沈阳': [123.1238, 42.1216],
+  '沧州': [116.8286, 38.2104],
+  '河源': [114.917, 23.9722],
+  '泉州': [118.3228, 25.1147],
+  '泰安': [117.0264, 36.0516],
+  '泰州': [120.0586, 32.5525],
+  '济南': [117.1582, 36.8701],
+  '济宁': [116.8286, 35.3375],
+  '海口': [110.3893, 19.8516],
+  '淄博': [118.0371, 36.6064],
+  '淮安': [118.927, 33.4039],
+  '深圳': [114.5435, 22.5439],
+  '清远': [112.9175, 24.3292],
+  '温州': [120.498, 27.8119],
+  '渭南': [109.7864, 35.0299],
+  '湖州': [119.8608, 30.7782],
+  '湘潭': [112.5439, 27.7075],
+  '滨州': [117.8174, 37.4963],
+  '潍坊': [119.0918, 36.524],
+  '烟台': [120.7397, 37.5128],
+  '玉溪': [101.9312, 23.8898],
+  '珠海': [113.7305, 22.1155],
+  '盐城': [120.2234, 33.5577],
+  '盘锦': [121.9482, 41.0449],
+  '石家庄': [114.4995, 38.1006],
+  '福州': [119.4543, 25.9222],
+  '秦皇岛': [119.2126, 40.0232],
+  '绍兴': [120.564, 29.7565],
+  '聊城': [115.9167, 36.4032],
+  '肇庆': [112.1265, 23.5822],
+  '舟山': [122.2559, 30.2234],
+  '苏州': [120.6519, 31.3989],
+  '莱芜': [117.6526, 36.2714],
+  '菏泽': [115.6201, 35.2057],
+  '营口': [122.4316, 40.4297],
+  '葫芦岛': [120.1575, 40.578],
+  '衡水': [115.8838, 37.7161],
+  '衢州': [118.6853, 28.8666],
+  '西宁': [101.4038, 36.8207],
+  '西安': [109.1162, 34.2004],
+  '贵阳': [106.6992, 26.7682],
+  '连云港': [119.1248, 34.552],
+  '邢台': [114.8071, 37.2821],
+  '邯郸': [114.4775, 36.535],
+  '郑州': [113.4668, 34.6234],
+  '鄂尔多斯': [108.9734, 39.2487],
+  '重庆': [107.7539, 30.1904],
+  '金华': [120.0037, 29.1028],
+  '铜川': [109.0393, 35.1947],
+  '银川': [106.3586, 38.1775],
+  '镇江': [119.4763, 31.9702],
+  '长春': [125.8154, 44.2584],
+  '长沙': [113.0823, 28.2568],
+  '长治': [112.8625, 36.4746],
+  '阳泉': [113.4778, 38.0951],
+  '青岛': [120.4651, 36.3373],
+  '韶关': [113.7964, 24.7028]
+};
+
+var BJData = [
+  [{ name: '北京' }, { name: '上海', value: 95 }],
+  [{ name: '北京' }, { name: '广州', value: 90 }],
+  [{ name: '北京' }, { name: '大连', value: 80 }],
+  [{ name: '北京' }, { name: '南宁', value: 70 }],
+  [{ name: '北京' }, { name: '南昌', value: 60 }],
+  [{ name: '北京' }, { name: '拉萨', value: 50 }],
+  [{ name: '北京' }, { name: '长春', value: 40 }],
+  [{ name: '北京' }, { name: '包头', value: 30 }],
+  [{ name: '北京' }, { name: '重庆', value: 20 }],
+  [{ name: '北京' }, { name: '常州', value: 10 }]
+];
+
+var SHData = [
+  [{ name: '上海' }, { name: '包头', value: 95 }],
+  [{ name: '上海' }, { name: '昆明', value: 90 }],
+  [{ name: '上海' }, { name: '广州', value: 80 }],
+  [{ name: '上海' }, { name: '郑州', value: 70 }],
+  [{ name: '上海' }, { name: '长春', value: 60 }],
+  [{ name: '上海' }, { name: '重庆', value: 50 }],
+  [{ name: '上海' }, { name: '长沙', value: 40 }],
+  [{ name: '上海' }, { name: '北京', value: 30 }],
+  [{ name: '上海' }, { name: '丹东', value: 20 }],
+  [{ name: '上海' }, { name: '大连', value: 10 }]
+];
+
+var GZData = [
+  [{ name: '广州' }, { name: '福州', value: 95 }],
+  [{ name: '广州' }, { name: '太原', value: 90 }],
+  [{ name: '广州' }, { name: '长春', value: 80 }],
+  [{ name: '广州' }, { name: '重庆', value: 70 }],
+  [{ name: '广州' }, { name: '西安', value: 60 }],
+  [{ name: '广州' }, { name: '成都', value: 50 }],
+  [{ name: '广州' }, { name: '常州', value: 40 }],
+  [{ name: '广州' }, { name: '北京', value: 30 }],
+  [{ name: '广州' }, { name: '北海', value: 20 }],
+  [{ name: '广州' }, { name: '海口', value: 10 }]
+];
+
+var planePath = 'path://M1705.06,1318.313v-89.254l-319.9-221.799l0.073-208.063c0.521-84.662-26.629-121.796-63.961-121.491c-37.332-0.305-64.482,36.829-63.961,121.491l0.073,208.063l-319.9,221.799v89.254l330.343-157.288l12.238,241.308l-134.449,92.931l0.531,42.034l175.125-42.917l175.125,42.917l0.531-42.034l-134.449-92.931l12.238-241.308L1705.06,1318.313z';
+
+var convertData = function (data) {
+  var res = [];
+  for (var i = 0; i < data.length; i++) {
+    var dataItem = data[i];
+    var fromCoord = geoCoordMap[dataItem[0].name];
+    var toCoord = geoCoordMap[dataItem[1].name];
+    if (fromCoord && toCoord) {
+      res.push({
+        fromName: dataItem[0].name,
+        toName: dataItem[1].name,
+        coords: [fromCoord, toCoord],
+        value: dataItem[1].value
+      });
+    }
+  }
+  return res;
+};
+
+var color = ['#a6c84c', '#ffa022', '#46bee9'];
+var series = [];
+[['北京', BJData], ['上海', SHData], ['广州', GZData]].forEach(function (item, i) {
+  //
+  series.push({
+    name: item[0] + ' Top10',
+    type: 'lines',
+    zlevel: 1,
+    effect: {
+      show: true,
+      period: 6,
+      trailLength: 0.7,
+      color: '#fff',
+      symbolSize: 3
+    },
+    lineStyle: {
+      normal: {
+        color: color[i],
+        width: 0,
+        curveness: 0.2
+      }
+    },
+    data: convertData(item[1])
+  },
+    {
+      name: item[0] + ' Top10',
+      type: 'lines',
+      zlevel: 2,
+      symbol: ['none', 'arrow'],
+      symbolSize: 10,
+      effect: {
+        show: true,
+        period: 6,
+        trailLength: 0,
+        symbol: planePath,
+        symbolSize: 15
+      },
+      lineStyle: {
+        normal: {
+          color: color[i],
+          width: 1,
+          opacity: 0.6,
+          curveness: 0.2
+        }
+      },
+      data: convertData(item[1])
+    },
+    {
+      name: item[0] + ' Top10',
+      type: 'effectScatter',
+      coordinateSystem: 'geo',
+      zlevel: 2,
+      rippleEffect: {
+        brushType: 'stroke'
+      },
+      label: {
+        normal: {
+          show: true,
+          position: 'right',
+          formatter: '{b}'
+        }
+      },
+      symbolSize: function (val) {
+        return val[2] / 8;
+      },
+      itemStyle: {
+        normal: {
+          color: color[i]
+        }
+      },
+      data: item[1].map(function (dataItem) {
+        return {
+          name: dataItem[1].name,
+          value: geoCoordMap[dataItem[1].name].concat([dataItem[1].value])
+        };
+      })
+    });
+});
+export default {
+  data () {
+    return {
+      options: {}
+    }
+  }
+}
+

+ 712 - 0
src/views/dashboard/index.vue

@@ -0,0 +1,712 @@
+<template>
+  <div class="dashboard">
+    <div class="dashboard-scrollbar">
+      <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.3)" class="dashboard-wrapper">
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">当日进港航班数</div>
+            <div class="dashboard-card-content">
+              <CountBox :count-number="arrivalFlightCount" :count-length="9" />
+            </div>
+          </div>
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">当日出港航班数</div>
+            <div class="dashboard-card-content">
+              <CountBox :count-number="departureFlightCount" :count-length="9" />
+            </div>
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">航司行李量排行</div>
+          </div>
+          <div v-if="companyData.length" class="dashboard-card-content">
+            <vue-seamless-scroll class="scroll-table" :class-option="defaultOption">
+              <div v-for="item in companyData" :key="item.name" class="company-baggage-item">
+                <div class="company-name">{{ item.name }}</div>
+                <div class="company-progress">
+                  <el-progress :percentage="item.percentage" :color="customColor" :show-text="false" :stroke-width="8"></el-progress>
+                </div>
+                <div class="company-count">{{ item.count }}</div>
+              </div>
+            </vue-seamless-scroll>
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">
+              <span class="title-text">航站选择</span>
+              <el-select v-model="currentAirport" placeholder="请选择航站" filterable default-first-option>
+                <el-option v-for="option in aiportOptions" :key="option.value" :label="option.label" :value="option.value" />
+              </el-select>
+            </div>
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">当日行李量统计</div>
+            <div class="dashboard-card-content">
+              <div v-for="item in baggageCountItems" :key="item.title" class="baggage-count-item">
+                <div class="baggage-count-num">{{ item.num }}</div>
+                <div class="baggage-count-title">{{ item.title }}</div>
+              </div>
+            </div>
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">当日行李目的地分布图</div>
+          </div>
+          <div class="dashboard-card-content">
+            <MapCharts id="box-map" :option="boxMap" />
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">每日小时行李处理量 - 进港</div>
+          </div>
+          <div class="dashboard-card-content">
+            <BarCharts id="inHour" :option="inHourDataOption" />
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">每日小时行李处理量 - 出港</div>
+          </div>
+          <div class="dashboard-card-content">
+            <BarCharts id="outHour" :option="outHourDataOption" />
+          </div>
+        </div>
+        <div class="dashboard-card">
+          <div class="dashboard-card-wrapper">
+            <div class="dashboard-card-title">每日小时行李处理量 - 中转</div>
+          </div>
+          <div class="dashboard-card-content">
+            <BarCharts id="transHour" :option="transHourDataOption" />
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+import CountBox from '@/components/CountBox/index.vue'
+import BarCharts from '@/layout/components/Echarts/commonChartsBar.vue'
+import MapCharts from '@/layout/components/Echarts/commonChartsChinaMap.vue'
+import VueSeamlessScroll from 'vue-seamless-scroll'
+import { Query } from '@/api/webApi'
+import { parseTime } from '@/utils'
+import { getAuthData } from '@/utils/validate'
+
+const defaultDate = parseTime(new Date(), '{y}-{m}-{d}')
+// const defaultDate = '2023-06-19'
+const barOption = {
+  tooltip: {
+    trigger: 'axis',
+    axisPointer: {
+      type: 'shadow',
+    },
+  },
+  grid: {
+    left: '3%',
+    right: '4%',
+    bottom: '3%',
+    containLabel: true,
+  },
+  xAxis: {
+    type: 'category',
+    data: [],
+    axisLabel: {
+      color: '#8897BC',
+    },
+    axisTick: {
+      alignWithLabel: true,
+    },
+  },
+  yAxis: {
+    type: 'value',
+    axisLabel: {
+      color: '#8897BC',
+    },
+  },
+  series: [
+    {
+      data: [],
+      type: 'bar',
+      barWidth: '16px',
+    },
+  ],
+}
+
+export default {
+  name: 'Dashboard',
+  components: {
+    CountBox,
+    BarCharts,
+    MapCharts,
+    VueSeamlessScroll,
+  },
+  data () {
+    return {
+      loading: false,
+      arrivalFlightCount: 0,
+      departureFlightCount: 0,
+      currentAirport: '',
+      aiportOptions: [],
+      companyData: [],
+      customColor: '#478BE7',
+      baggageCountItems: [
+        {
+          title: '行李总数',
+          num: 0,
+        },
+        {
+          title: '进港行李数',
+          num: 0,
+        },
+        {
+          title: '出港行李数',
+          num: 0,
+        },
+        {
+          title: '中转行李数',
+          num: 0,
+        },
+      ],
+      boxMap: {
+        tooltip: {
+          trigger: 'item',
+          formatter: function (item) {
+            if (item.data && item.data.index) {
+              const html = `<div>
+              <div>TOP ${item.data.index}</div>
+              <div>${item.data.name} ${item.data.value}</div>
+            </div>`
+              return html
+            } else {
+              return '<div>暂无数据</div>'
+            }
+          },
+        },
+        legend: {
+          show: false,
+        },
+        grid: {
+          left: 0,
+          right: 0,
+          top: 0,
+          bottom: 0,
+        },
+        visualMap: {
+          type: 'continuous',
+          text: ['高', '低'],
+          min: 0,
+          max: 3000,
+          seriesIndex: [0, 2],
+          dimension: 0,
+          realtime: false,
+          left: 0,
+          bottom: '30%',
+          itemWidth: 8,
+          itemHeight: 93,
+          calculable: true,
+          inRange: {
+            color: ['#869CBC', 'yellow'],
+            symbolSize: [100, 100],
+          },
+          textStyle: {
+            color: '#fff',
+          },
+          outOfRange: {
+            color: ['orange'],
+            symbolSize: [100, 100],
+          },
+        },
+        toolbox: {
+          show: false,
+        },
+        xAxis: {
+          show: false,
+        },
+        yAxis: {
+          show: false,
+        },
+        series: [
+          {
+            name: '行李数',
+            type: 'map',
+            mapType: 'china',
+            // left: '100',
+            // width: '40%',
+            roam: 'move',
+            mapValueCalculation: 'sum',
+            zoom: 1,
+            selectedMode: false,
+            showLegendSymbol: false,
+            left: '10%',
+            top: '10%',
+            width: '80%',
+            label: {
+              normal: {
+                textStyle: {
+                  color: '#666666',
+                },
+              },
+              emphasis: {
+                textStyle: {
+                  color: '#234EA5',
+                },
+              },
+            },
+            itemStyle: {
+              normal: {
+                areaColor: '#fff',
+                borderColor: '#666666',
+              },
+              emphasis: {
+                areaColor: '#E5F39B',
+              },
+            },
+            data: [],
+          },
+        ],
+      },
+      inHourDataOption: this._.cloneDeep(barOption),
+      outHourDataOption: this._.cloneDeep(barOption),
+      transHourDataOption: this._.cloneDeep(barOption),
+      authId: null,
+      queryId: null,
+    }
+  },
+  computed: {
+    defaultOption () {
+      return {
+        step: 0.5, // 数值越大速度滚动越快
+        limitMoveNum: 2, // 开始无缝滚动的数据量  //this.fourDatata.length
+        hoverStop: true, // 是否开启鼠标悬停stop
+        direction: 1, // 0向下 1向上 2向左 3向右
+        openWatch: true, // 开启数据实时监控刷新dom
+        singleHeight: 0, // 单步运动停止的高度(默认值0是无缝不停止的滚动) direction => 0/1
+        singleWidth: 0, // 单步运动停止的宽度(默认值0是无缝不停止的滚动) direction => 2/3
+        waitTime: 1000, // 单步运动停止的时间(默认值1000ms)
+      }
+    },
+  },
+  watch: {
+    currentAirport (val) {
+      if (val) {
+        this.getAllData()
+      }
+    },
+  },
+  created () {
+    this.inHourDataOption.series[0].color = '#3FC9D5'
+    this.outHourDataOption.series[0].color = '#527CF5'
+    this.transHourDataOption.series[0].color = '#F5C871'
+  },
+  mounted () {
+    const { auth_id } = this.$route.meta
+    if (auth_id) {
+      const { arrs } = getAuthData(auth_id)
+      if (arrs && arrs.length) {
+        const obj = arrs[0]
+        this.authId = obj.auth_id
+        this.queryId = obj.queryTemplateID
+      }
+    }
+    this.getAiportList()
+  },
+  methods: {
+    // 航站列表
+    async getAiportList () {
+      this.loading = true
+      try {
+        let params = {
+          serviceid: 74,
+          datacontent: [{filter:{1:1}}],
+          event: '0',
+        }
+        if (this.queryId) {
+          params = {
+            ...params,
+            authId: this.authId,
+            serviceId: this.queryId,
+          }
+        }
+        const {
+          code,
+          returnData,
+          message,
+        } = await Query(params)
+        if (String(code) !== '0') {
+          throw new Error(message || '失败')
+        }
+        this.aiportOptions = returnData.map(aiport => ({
+          label: aiport.code3,
+          value: aiport.code3,
+        }))
+        this.currentAirport = 'CAN'
+      } catch (error) {
+        console.error(error)
+      }
+      this.loading = false
+    },
+    // 当日数量和小时数量
+    async getDateData (serviceid) {
+      try {
+        const {
+          code,
+          returnData,
+          message,
+        } = await Query({
+          serviceid,
+          datacontent: [
+          {filter:{
+              fd1: defaultDate,
+              fd2: defaultDate,
+              airport: this.currentAirport,
+            },}
+          ],
+          event: '0',
+        })
+        if (String(code) !== '0') {
+          throw new Error(message || '失败')
+        }
+        return returnData
+      } catch (error) {
+        console.error(error)
+        return []
+      }
+    },
+    // 航司行李量排行
+    async getCompanyData () {
+      try {
+        this.companyData = []
+        const {
+          code,
+          returnData,
+          message,
+        } = await Query({
+          serviceid: 81,
+          datacontent: [
+            {filter:{
+              airport: this.currentAirport,
+              fd1: defaultDate,
+              fd2: defaultDate,
+            },}
+          ],
+          event: '0',
+        })
+        if (String(code) !== '0') {
+          throw new Error(message || '失败')
+        }
+        const max = Math.max(...returnData.map(item => Number(item.bags)))
+        this.companyData = returnData.map(item => ({
+          name: item.iata_code,
+          count: Number(item.bags),
+          percentage: max ? (Number(item.bags) / max).toFixed(2) * 100 : 0,
+        }))
+      } catch (error) {
+        console.error(error)
+      }
+    },
+    // 当日行李分布
+    async getMap () {
+      try {
+        const {
+          code,
+          returnData: listValues,
+          message,
+        } = await Query({
+          serviceid: 80,
+          datacontent: [
+          {filter:{
+              airport: this.currentAirport,
+              fd1: defaultDate,
+              fd2: defaultDate,
+            },}
+          ],
+          event: '0',
+        })
+        if (String(code) !== '0') {
+          this.boxMap.series[0].data = []
+          throw new Error(message || '失败')
+        }
+        listValues.sort((a, b) => b.bags - a.bags)
+        this.boxMap.series[0].data = listValues.map((item, index) => {
+          item.name = item.in_province
+          item.value = item.bags
+          item.index = index + 1
+          return item
+        })
+      } catch (error) {
+        console.error(error)
+      }
+    },
+    async getAllData () {
+      this.loading = true
+      try {
+        const serviceIdList = [
+          82,
+          83,
+          84,
+          85,
+          86,
+        ]
+        const [
+          [dateFlightData],
+          [dateBaggageData],
+          inHourData,
+          outHourData,
+          transHourData,
+        ] = await Promise.all([
+          ...serviceIdList.map(id => this.getDateData(id)),
+          this.getCompanyData(),
+          this.getMap(),
+        ])
+        this.arrivalFlightCount = Number(dateFlightData?.flights_in ?? 0)
+        this.departureFlightCount = Number(dateFlightData?.flights_out ?? 0)
+        this.baggageCountItems[0].num = Number(dateBaggageData?.bags ?? 0)
+        this.baggageCountItems[1].num = Number(dateBaggageData?.bags_in ?? 0)
+        this.baggageCountItems[2].num = Number(dateBaggageData?.bags_out ?? 0)
+        this.baggageCountItems[3].num = Number(
+          dateBaggageData?.transfer_bags ?? 0
+        )
+        const sortedInHoutData = this._.sortBy(inHourData, 'dat')
+        const sortedOutHoutData = this._.sortBy(outHourData, 'dat')
+        const sortedTransHoutData = this._.sortBy(transHourData, 'dat')
+        this.inHourDataOption.xAxis.data = sortedInHoutData.reduce(
+          (prev, curr) => {
+            if ((curr.dat ?? '') !== '') {
+              prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
+            }
+            return prev
+          },
+          []
+        )
+        this.inHourDataOption.series[0].data = sortedInHoutData.reduce(
+          (prev, curr) => {
+            if ((curr.dat ?? '') !== '') {
+              prev.push(Number(curr.bags))
+            }
+            return prev
+          },
+          []
+        )
+        this.outHourDataOption.xAxis.data = sortedOutHoutData.reduce(
+          (prev, curr) => {
+            if ((curr.dat ?? '') !== '') {
+              prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
+            }
+            return prev
+          },
+          []
+        )
+        this.outHourDataOption.series[0].data = sortedOutHoutData.reduce(
+          (prev, curr) => {
+            if ((curr.dat ?? '') !== '') {
+              prev.push(Number(curr.bags))
+            }
+            return prev
+          },
+          []
+        )
+        this.transHourDataOption.xAxis.data = sortedTransHoutData.reduce(
+          (prev, curr) => {
+            if ((curr.dat ?? '') !== '') {
+              prev.push(`${curr.dat}${curr.dat <= 12 ? 'am' : 'pm'}`)
+            }
+            return prev
+          },
+          []
+        )
+        this.transHourDataOption.series[0].data = sortedTransHoutData.reduce(
+          (prev, curr) => {
+            if ((curr.dat ?? '') !== '') {
+              prev.push(Number(curr.bags))
+            }
+            return prev
+          },
+          []
+        )
+      } catch (error) {
+        console.error(error)
+      }
+      this.loading = false
+    },
+  },
+}
+</script>
+
+<style lang="scss" scoped>
+.dashboard {
+  width: 100%;
+  height: calc(100vh - 48px - 32px);
+  padding: 16px 20px;
+  background-color: #081821;
+  color: #fff;
+  &-scrollbar {
+    margin-right: -20px;
+    width: calc(100% + 20px);
+    height: 100%;
+    overflow-x: hidden;
+    overflow-y: auto;
+  }
+  &-wrapper {
+    width: 100%;
+    height: 968px;
+    display: flex;
+    flex-direction: column;
+    flex-wrap: wrap;
+    justify-content: space-between;
+  }
+  &-card {
+    width: calc((100% - 16px * 2) / 3);
+    height: calc((100% - 16px * 2) / 3);
+    padding: 25px;
+    display: flex;
+    flex-direction: column;
+    border: 1px solid #3a4456;
+    background: linear-gradient(270deg, rgba(118, 142, 184, 0.25), transparent);
+    position: relative;
+    &::before {
+      content: "";
+      display: block;
+      width: 0;
+      height: 0;
+      position: absolute;
+      top: 0;
+      left: 0;
+      border: 12px solid #6d7d98;
+      border-right-color: transparent;
+      border-bottom-color: transparent;
+    }
+    &-wrapper {
+      height: 0;
+      flex: 1;
+      &:not(:first-child) {
+        margin-top: 25px;
+      }
+    }
+    &-title {
+      height: 40px;
+      line-height: 16px;
+      font-size: 16px;
+      font-family: Helvetica, Microsoft YaHei;
+      font-weight: bold;
+    }
+    &-content {
+      height: calc(100% - 40px);
+    }
+    &:nth-child(1) {
+      .dashboard-card-content {
+        max-height: 64px;
+      }
+    }
+    &:nth-child(3) {
+      height: 40px;
+      padding: 0 25px;
+      &::before {
+        display: none;
+      }
+      .dashboard-card-title {
+        height: 38px;
+        display: flex;
+        justify-content: space-between;
+        line-height: 38px;
+        .el-select {
+          width: 120px;
+          ::v-deep .el-input__inner {
+            border: none;
+            background-color: transparent;
+            font-size: 16px;
+            font-family: Helvetica, Microsoft YaHei;
+            font-weight: bold;
+            color: #ffffff;
+          }
+        }
+      }
+    }
+    &:nth-child(4) {
+      height: calc((100% - 16px * 2) / 3 - 40px - 16px);
+    }
+    &:nth-child(2),
+    &:nth-child(5) {
+      height: calc((100% - 16px * 2) / 3 * 2 + 16px);
+    }
+    &:nth-child(4) {
+      .dashboard-card-content {
+        display: flex;
+        flex-wrap: wrap;
+        justify-content: space-between;
+        .baggage-count-item {
+          height: 50%;
+          padding-left: 96px;
+          display: flex;
+          flex-direction: column;
+          justify-content: center;
+          position: relative;
+          font-family: Helvetica, Microsoft YaHei;
+          font-weight: bold;
+          .baggage-count-num {
+            width: 120px;
+            font-size: 36px;
+            color: #f7c15a;
+          }
+          .baggage-count-title {
+            font-size: 14px;
+          }
+          &::before {
+            content: url("../../assets/analysis/ic.png");
+            display: block;
+            width: 72px;
+            height: 72px;
+            position: absolute;
+            top: 50%;
+            left: 0;
+            transform: translate(0, -50%);
+          }
+        }
+      }
+    }
+    &:nth-child(5) {
+      background: transparent;
+      border: none;
+      &::before {
+        display: none;
+      }
+    }
+  }
+  .scroll-table {
+    height: 100%;
+    overflow: hidden;
+    .company-baggage-item {
+      margin-top: 36px;
+      display: flex;
+      align-items: center;
+      font-size: 14px;
+      font-family: Helvetica;
+      font-weight: bold;
+      color: #ffffff;
+      .company-progress {
+        flex: 1;
+        margin: 0 23px;
+      }
+      ::v-deep .progress {
+        flex: 1;
+        margin: 0 36px;
+        .el-progress-bar {
+          padding-right: 0;
+          .el-progress-bar__outer {
+            background-color: #534e75;
+          }
+        }
+        .el-progress__text {
+          display: none;
+        }
+      }
+    }
+  }
+}
+</style>

+ 2 - 2
src/views/monitoringlarge/views/singleairline/singleairline.vue

@@ -392,7 +392,7 @@ export default {
           serviceid: 90,
           datacontent: [
             {filter: {
-              aircompany: data.aircompany,
+              aircompany: data.aircompany ? data.aircompany : 'CZ',
               fd1: data.dateTime[0],
               fd2: data.dateTime[1],
             },}
@@ -434,7 +434,7 @@ export default {
           serviceid: 91,
           datacontent: [
             {filter:{
-              aircompany: data.aircompany,
+              aircompany: data.aircompany ? data.aircompany : 'CZ',
               fd1: data.dateTime[0],
               fd2: data.dateTime[1],
             },}

+ 2 - 2
src/views/monitoringlarge/views/singleairport/singleairport.vue

@@ -393,7 +393,7 @@ export default {
           serviceid: 92,
           datacontent: [
             {filter:{
-              airport: data.airport,
+              airport: data.airport ? data.airport : 'CAN',
               fd1: data.dateTime[0],
               fd2: data.dateTime[1],
             },}
@@ -435,7 +435,7 @@ export default {
           serviceid: 93,
           datacontent: [
             {filter:{
-              airport: data.airport,
+              airport: data.airport ? data.airport : 'CAN',
               fd1: data.dateTime[0],
               fd2: data.dateTime[1],
             },}