kongdeqiang
2022-11-04 98fcbf66162fba0a097a8abcaeba5e1c1e32000e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<template>
  <div class="dashboard-page2">
    <Row :gutter="20">
      <Col :xs="24" :sm="24" :md="12" :lg="6">
        <cardArea class="margin"/>
      </Col>
      <Col :xs="24" :sm="24" :md="12" :lg="6">
        <cardAreaFill class="margin"/>
      </Col>
      <Col :xs="24" :sm="24" :md="12" :lg="6">
        <cardLine />
      </Col>
      <Col :xs="24" :sm="24" :md="12" :lg="6">
        <cardProgress class="margin"/>
      </Col>
    </Row>
    <Row :gutter="20">
      <Col :xs="24" :sm="24" :lg="24" :xl="12">
        <LineChart class="margin"/>
      </Col>
      <Col :xs="24" :sm="24" :lg="24" :xl="12">
        <bubble class="margin"/>
      </Col>
    </Row>
    <Row :gutter="20">
      <Col :xs="24" :sm="24" :lg="24" :xl="18">
        <mapCard class="margin"/>
      </Col>
      <Col :xs="24" :sm="24" :lg="24" :xl="6">
        <activity class="margin"/>
      </Col>
    </Row>
  </div>
</template>
 
<script>
import cardArea from "./components/cardArea.vue";
import cardAreaFill from "./components/cardAreaFill.vue";
import cardLine from "./components/cardLine.vue";
import cardProgress from "./components/cardProgress.vue";
import LineChart from "./components/line.vue";
import bubble from "./components/bubble.vue";
import mapCard from "./components/map.vue";
import activity from "./components/activity.vue";
export default {
  name: "dashboard-2",
  components: {
    cardArea,
    cardAreaFill,
    LineChart,
    cardLine,
    cardProgress,
    bubble,
    mapCard,
    activity
  },
  data() {
    return {};
  },
  methods: {
    init() {}
  },
  mounted() {
    this.init();
  }
};
</script>
<style lang="less" scoped>
.dashboard-page2 {
  .margin {
    margin-bottom: 20px;
  }
}
</style>