ソースを参照

添加echarts

zhaoke 2 年 前
コミット
69b2088072

+ 8 - 0
components.d.ts

@@ -5,6 +5,14 @@ import '@vue/runtime-core'
 
 declare module '@vue/runtime-core' {
   export interface GlobalComponents {
+    CommonCharts: typeof import('./src/components/Echarts/commonCharts.vue')['default']
+    CommonChartsBar: typeof import('./src/components/Echarts/commonChartsBar.vue')['default']
+    CommonChartsChinaMap: typeof import('./src/components/Echarts/commonChartsChinaMap.vue')['default']
+    CommonChartsLine: typeof import('./src/components/Echarts/commonChartsLine.vue')['default']
+    CommonChartsPie: typeof import('./src/components/Echarts/commonChartsPie.vue')['default']
+    CommonChartsQiu: typeof import('./src/components/Echarts/commonChartsQiu.vue')['default']
+    CommonChartsRadar: typeof import('./src/components/Echarts/commonChartsRadar.vue')['default']
+    CommonChartsScatter: typeof import('./src/components/Echarts/commonChartsScatter.vue')['default']
     Dialog: typeof import('./src/components/dialog/index.vue')['default']
     ElSvgIcon: typeof import('./src/components/ElSvgIcon.vue')['default']
     Minheader: typeof import('./src/components/minheader/index.vue')['default']

+ 2 - 0
package.json

@@ -22,6 +22,7 @@
   },
   "dependencies": {
     "@element-plus/icons-vue": "^2.0.9",
+    "@types/lodash": "^4.14.186",
     "axios": "0.21.3",
     "blueimp-md5": "^2.19.0",
     "echarts": "5.3.2",
@@ -30,6 +31,7 @@
     "file-saver": "^2.0.5",
     "js-cookie": "^3.0.1",
     "js-error-collection": "^1.0.7",
+    "lodash": "^4.17.21",
     "mitt": "^3.0.0",
     "moment-mini": "2.22.1",
     "nprogress": "0.2.0",

BIN
src/assets/home/pic_border.png


+ 92 - 0
src/components/Echarts/commonChartsBar.vue

@@ -0,0 +1,92 @@
+<!--
+ * @Author: zk
+ * @Date: 2021-09-16 16:24:53
+ * @LastEditTime: 2021-09-28 14:43:06
+ * @LastEditors: Please set LastEditors
+ * @Description: 柱状图
+ * @FilePath: \vue-admin-template-master\src\layout\components\Echarts\commonChartsBar.vue
+-->
+<template>
+  <div class="ChartsBar" :id="id"></div>
+</template>
+
+<script>
+import { markRaw } from 'vue'
+import * as echarts from "echarts";
+import * as _ from 'lodash'
+// 柱状图初始数据
+import ChartsBar from '../mixin/commonChartsBar'
+export default {
+  name: 'ChartsBar',
+  props: {
+    // 柱状图生成所需id
+    id: {
+      type: String,
+      default: ''
+    },
+    // 柱状图额外的数据
+    option: {
+      type: Object,
+      default: () => { }
+    }
+  },
+  mixins: [ChartsBar],
+  data () {
+    return {
+      myChart: null, //柱状图实例
+      desc: 300 // 防抖时间
+    }
+  },
+  mounted () {
+    // 初始数据和额外的配置数据耦合
+    const objData = _.merge(this.options.baseOption, this.option)
+    // 柱状图dom
+    const chartDom = document.getElementById(this.id)
+    // 柱状图初始化
+    this.myChart = markRaw(echarts.init(chartDom))
+    // 生成柱状图
+    this.myChart.setOption(objData)
+    // 监听页面缩放 防止dom重复渲染
+    window.addEventListener('resize', _.debounce(this.handle, this.desc))
+  },
+  watch: {
+    // 监听数据变化,重绘折线图
+    option: {
+      deep: true,
+      handler (newVal) {
+        const objData = _.merge(this.options, newVal)
+        const chartDom = document.getElementById(this.id)
+        // 先移除之前的实例,保证重绘的流畅性
+        chartDom.removeAttribute('_echarts_instance_')
+        this.myChart = markRaw(echarts.init(chartDom))
+        this.myChart.setOption(objData)
+      }
+    }
+  },
+  destroyed () {
+    // 销毁实例和移除监听
+    this.myChart.dispose()
+    window.removeEventListener('resize', this.handle)
+  },
+  methods: {
+    /**
+     * @description: 图形缩放
+     * @param {*}
+     * @return {*}
+     */
+    handle () {
+      this.myChart.resize()
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.ChartsBar {
+  height: 100%;
+  width: 100%;
+  position: absolute;
+  left: 0;
+  top: 0;
+}
+</style>

+ 75 - 0
src/components/Echarts/commonChartsChinaMap.vue

@@ -0,0 +1,75 @@
+<!--
+ * @Author: your name
+ * @Date: 2021-09-23 11:16:14
+ * @LastEditTime: 2021-09-23 16:51:29
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: \bigDataScreen\src\components\Echarts\commonChartsChinaMap.vue
+-->
+<template>
+  <div class="ChartsChinaMap" :id="id"></div>
+</template>
+
+<script>
+// 饼图初始数据
+import ChartsChinaMap from '../mixin/commonChartsChinaMap'
+export default {
+  name: 'ChartsChinaMap',
+  props: {
+    // 饼图生成所需id
+    id: {
+      type: String,
+      default: ''
+    },
+    // 饼图额外的数据
+    option: {
+      type: Object,
+      default: () => { }
+    }
+  },
+  mixins: [ChartsChinaMap],
+  data () {
+    return {
+      myChart: null, //饼图实例
+      desc: 300 // 防抖时间
+    }
+  },
+  mounted () {
+    // 初始数据和额外的配置数据耦合
+    const objData = _.merge(this.options, this.option)
+    // 饼图dom
+    const chartDom = document.getElementById(this.id)
+    // 饼图初始化
+    this.myChart = this.$echarts.init(chartDom)
+    // 生成饼图
+    this.myChart.setOption(objData)
+    // 监听页面缩放 防止dom重复渲染
+    window.addEventListener('resize', _.debounce(this.handle, this.desc))
+  },
+  destroyed () {
+    // 销毁实例和移除监听
+    this.myChart.dispose();
+    window.removeEventListener('resize', this.handle);
+  },
+  methods: {
+    /**
+     * @description: 图形缩放
+     * @param {*}
+     * @return {*}
+     */
+    handle () {
+      this.myChart.resize()
+    }
+  }
+}
+</script>
+
+<style lang="less" scoped>
+.ChartsChinaMap {
+  height: 100%;
+  width: 100%;
+  position: absolute;
+  left: 0;
+  top: 0;
+}
+</style>

+ 88 - 0
src/components/mixin/commonChartsBar.js

@@ -0,0 +1,88 @@
+/*
+ * @Author: zk
+ * @Date: 2021-09-16 16:20:11
+ * @LastEditTime: 2021-09-28 14:11:50
+ * @LastEditors: Please set LastEditors
+ * @Description: 柱状图初始数据
+ * @FilePath: \vue-admin-template-master\src\layout\mixin\commonChartsLine.js
+ */
+export default {
+  data () {
+    return {
+      options: {
+        // echarts4要用timeline就要把通用属性写到baseOption里
+        baseOption: {
+          textStyle: {
+            color: '#698dc3'
+          },
+          title: {
+            top: '4%',
+            left: '5%',
+            textStyle: {
+              color: '#4bb4dd'
+            }
+          },
+          legend: {
+            top: '4%',
+            right: '5%',
+            textStyle: {
+              color: '#698dc3'
+            }
+          },
+          tooltip: {
+            trigger: 'axis',
+            axisPointer: {
+              type: 'shadow'
+            }
+          },
+          grid: {
+            left: '5%',
+            right: '5%',
+            bottom: '5%',
+            top: '25%',
+            containLabel: true
+          },
+          xAxis: {
+            type: 'category',
+            axisTick: {
+              show: false
+            },
+            axisLine: {
+              show: false,
+              lineStyle: {
+                color: '#698dc3'
+              }
+            },
+            splitLine: {
+              lineStyle: {
+                type: 'dashed',
+                color: '#698dc3'
+              }
+            },
+            axisLabel: {
+              color: '#698dc3'
+            }
+          },
+          yAxis: {
+            type: 'value',
+            axisLine: {
+              show: false,
+              lineStyle: {
+                color: '#698dc3'
+              }
+            },
+            splitLine: {
+              lineStyle: {
+                type: 'dashed',
+                color: '#698dc3'
+              }
+            },
+            axisLabel: {
+              color: '#698dc3'
+            }
+          },
+        }
+      }
+    }
+  }
+}

+ 304 - 0
src/components/mixin/commonChartsChinaMap.js

@@ -0,0 +1,304 @@
+/*
+ * @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 '../../util/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) {
+  //console.log(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: {
+        tooltip: {
+          trigger: 'item',
+          formatter: function (params, ticket, callback) {
+            if (params.seriesType == "effectScatter") {
+              return "线路:" + params.data.name + "" + params.data.value[2];
+            } else if (params.seriesType == "lines") {
+              return params.data.fromName + ">" + params.data.toName + "<br />" + params.data.value;
+            } else {
+              return params.name;
+            }
+          }
+        },
+        geo: {
+          map: 'china',
+          label: {
+            emphasis: {
+              show: true,
+              color: '#fff'
+            }
+          },
+          roam: true,
+          itemStyle: {
+            normal: {
+              areaColor: '#154186',
+              borderColor: '#255caf'
+            },
+            emphasis: {
+              areaColor: '#255caf'
+            }
+          }
+        },
+        series: series
+      }
+    }
+  }
+}
+

+ 4 - 4
src/main.ts

@@ -46,8 +46,8 @@ import 'uno.css'
 // app.component('ElSvgIcon', ElSvgIcon)
 
 //error log  collection
-import errorLog from '@/hooks/useErrorLog'
-errorLog()
+// import errorLog from '@/hooks/useErrorLog'
+// errorLog()
 
 //pinia
 import { createPinia } from 'pinia'
@@ -56,6 +56,6 @@ app.use(createPinia())
 
 app.use(router).mount('#app')
 
-import elTableInfiniteScroll from 'el-table-infinite-scroll';
+import elTableInfiniteScroll from 'el-table-infinite-scroll'
 
-app.use(elTableInfiniteScroll);
+app.use(elTableInfiniteScroll)

+ 230 - 2
src/views/dashboard/index.vue

@@ -1,7 +1,235 @@
 <template>
-  <div class="scroll-y">
-    首页
+  <div class="dashboard">
+    <div class="dashboard-head flex">
+      <div class="dashboard-head-title">{{title}}</div>
+      <div class="dashboard-head-tabs flex-wrap">
+        <div class="dashboard-head-tabs-list" :class="tabsIndex == index ? 'active' : ''" @click="tabClick(item,index)" v-for="(item,index) in tabs" :key="index">{{item.label}}</div>
+      </div>
+      <div class="dashboard-head-zw"></div>
+    </div>
+    <div class="dashboard-content">
+      <div v-if="false" class="dashboard-content-top flex">
+        <div class="dashboard-content-top-left">
+          <Echarts id="ww" :option="optionLeft" />
+        </div>
+        <div class="dashboard-content-top-center">2</div>
+        <div class="dashboard-content-top-right">3</div>
+      </div>
+      <div class="dashboard-content-bottom"></div>
+    </div>
   </div>
 </template>
+
 <script setup lang="ts">
+import { ref } from "vue";
+import Echarts from "@/components/Echarts/commonChartsBar.vue";
+const title = ref("决策管理驾驶舱");
+const tabs = [
+  {
+    id: 1,
+    label: "国内进港",
+    value: "one",
+  },
+  {
+    id: 2,
+    label: "国内出港",
+    value: "two",
+  },
+  {
+    id: 3,
+    label: "国际进港",
+    value: "three",
+  },
+  {
+    id: 4,
+    label: "国际出港",
+    value: "four",
+  },
+];
+const tabsIndex = ref(2);
+const optionLeft = {
+  tooltip: {
+    trigger: "axis",
+  },
+  // legend: {
+  //   data: ['运输总数', '托运旅客数'],
+  //   show: true,
+  //   top: 0,
+  //   icon: 'roundRect'
+  // },
+  grid: {
+    left: "0%",
+    right: "0%",
+    bottom: "0%",
+    top: "15%",
+    containLabel: true,
+  },
+  color: ["#F5BB3D", "#73D970", "#6A9DD9"],
+  xAxis: {
+    type: "category",
+    boundaryGap: true,
+    data: ["2021.12", "2022.01", "2022.02", "2022.03", "2022.04", "2022.05"],
+    axisLine: {
+      show: true,
+      lineStyle: {
+        color: "#8897BC",
+      },
+    },
+    axisTick: {
+      show: false,
+    },
+    axisLabel: {
+      color: "#8897BC",
+    },
+  },
+  yAxis: {
+    type: "value",
+    axisLabel: {
+      color: "#8897BC",
+      formatter: function (item) {
+        return item / 10000 + "万";
+      },
+    },
+    splitLine: {
+      lineStyle: {
+        type: "dashed",
+        color: "rgba(196,194,225, 0.54)",
+      },
+    },
+  },
+  series: [
+    {
+      name: "运输总数",
+      type: "line",
+      symbol: "none",
+      key: "bagsnum",
+      data: [120, 132, 101, 134, 90, 230, 210],
+      areaStyle: {
+        color: {
+          type: "linear",
+          x: 0,
+          y: 0,
+          x2: 0,
+          y2: 1,
+          colorStops: [
+            {
+              offset: 0,
+              color: "rgba(125,72,255,0.5)",
+            },
+            {
+              offset: 1,
+              color: "rgba(0,180,255,0.01)",
+            },
+          ],
+          global: false,
+        },
+      },
+    },
+    {
+      name: "托运旅客数",
+      type: "line",
+      symbol: "none",
+      key: "passengers",
+      data: [220, 182, 191, 234, 290, 330, 310],
+      areaStyle: {
+        color: {
+          type: "linear",
+          x: 0,
+          y: 0,
+          x2: 0,
+          y2: 1,
+          colorStops: [
+            {
+              offset: 0,
+              color: "rgba(125,72,255,0.5)",
+            },
+            {
+              offset: 1,
+              color: "rgba(0,180,255,0.01)",
+            },
+          ],
+          global: false,
+        },
+      },
+    },
+  ],
+};
+const tabClick = (item, index) => {
+  tabsIndex.value = index;
+  console.log(item, index);
+};
 </script>
+
+<style lang="scss" scoped>
+.dashboard {
+  position: absolute;
+  width: 100%;
+  height: 100%;
+  left: 0;
+  top: 0;
+  background: linear-gradient(185deg, #1e305f, #0f1015);
+  z-index: 2000;
+  color: #fff;
+  &-head {
+    padding: 0 32px;
+    height: 48px;
+    line-height: 48px;
+    background: #1d2948;
+    &-title {
+      font-size: 24px;
+      font-family: Microsoft YaHei;
+      font-weight: bold;
+      color: #51dee9;
+    }
+    &-tabs {
+      font-size: 16px;
+      font-family: Microsoft YaHei;
+      font-weight: 400;
+      color: #ffffff;
+      &-list {
+        margin-right: 60px;
+        cursor: pointer;
+        position: relative;
+        &:last-child {
+          margin-right: 0;
+        }
+      }
+      .active {
+        color: #51dee9;
+        &::after {
+          content: "";
+          position: absolute;
+          bottom: 0;
+          width: 80%;
+          left: 10%;
+          height: 2px;
+          background: #51dee9;
+        }
+      }
+    }
+    &-zw {
+      width: 190px;
+    }
+  }
+  &-content {
+    padding: 24px 32px;
+    &-top {
+      width: 100%;
+      height: 60vh;
+      &-left,
+      &-right {
+        width: 25%;
+        position: relative;
+      }
+      &-center {
+        width: 50%;
+      }
+    }
+    .pBox {
+      background-image: url("../../assets/home/pic_border.png");
+      background-repeat: no-repeat;
+      background-size: 100% 100%;
+    }
+  }
+}
+</style>