bug
zhangzeli
2022-01-10 9252ac63bade4c0e155b2c5a2882fdfda863ee96
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<template>
  <div class="dashboard-page">
    <Row :gutter="20">
      <Col :xs="24" :sm="24" :lg="8">
        <cardLine class="margin" />
      </Col>
      <Col :xs="24" :sm="24" :lg="16">
        <Row :gutter="20">
          <Col :xs="24" :sm="24" :lg="6">
            <card1 class="margin" />
          </Col>
          <Col :xs="24" :sm="24" :lg="18">
            <card2 class="margin" />
          </Col>
        </Row>
        <Row :gutter="20">
          <Col :xs="24" :sm="24" :lg="12">
            <Row :gutter="20">
              <Col :xs="24" :sm="24">
                <card3 class="margin" />
              </Col>
              <Col :xs="24" :sm="24">
                <Row :gutter="20">
                  <Col :xs="24" :sm="24" :lg="12">
                    <card4
                      id="card4"
                      :bordered="false"
                      :end-val="193"
                      backgroundColor="#6993fe"
                      countColor="#fff"
                      icon="ios-apps"
                      iconColor="#fff"
                      titleColor="#fff"
                      iconSize="26"
                      title="今日新增应用"
                      titleSize="14px"
                      class="margin"
                    />
                  </Col>
                  <Col :xs="24" :sm="24" :lg="12">
                    <card4
                      id="card4-2"
                      :bordered="false"
                      :end-val="863"
                      countColor="#3f4255"
                      icon="md-people"
                      iconColor="#19be6b"
                      titleColor="#b5b5c5"
                      iconSize="34"
                      title="今日新增用户"
                      titleSize="14px"
                      class="margin"
                    />
                  </Col>
                </Row>
              </Col>
            </Row>
          </Col>
          <Col :xs="24" :sm="24" :lg="12">
            <card5 class="margin" />
          </Col>
        </Row>
      </Col>
    </Row>
    <Row :gutter="20">
      <Col :xs="24" :sm="24" :lg="24" :xl="8">
        <cardData class="margin" />
      </Col>
      <Col :xs="24" :sm="24" :lg="24" :xl="16">
        <cardChart class="margin" />
      </Col>
    </Row>
  </div>
</template>
 
<script>
import cardLine from "./components/cardLine.vue";
import card1 from "./components/card1.vue";
import card2 from "./components/card2.vue";
import card3 from "./components/card3.vue";
import card4 from "@/views/my-components/widget/card1.vue";
import card5 from "./components/card5.vue";
import cardData from "./components/cardData.vue";
import cardChart from "./components/cardChart.vue";
export default {
  name: "dashboard-4",
  components: {
    cardLine,
    card1,
    card2,
    card3,
    card4,
    card5,
    cardData,
    cardChart,
  },
  data() {
    return {};
  },
  methods: {
    init() {},
  },
  mounted() {
    this.init();
  },
};
</script>
<style lang="less" scoped>
.dashboard-page {
  .margin {
    margin-bottom: 20px;
  }
}
</style>