wang-hao-jie
2021-11-24 07d3ca1aef2fa1ffca559593b93a2696e2a70d0e
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
<template>
  <div>
    <Card :padding="0" class="dashboard4-card2">
      <div class="info-wrap">
        <div class="title-content">
          <div class="title">创建CRM报表报告</div>
          <div class="desc">系统将根据项目自动生成报告</div>
        </div>
        <Button
          type="info"
          size="large"
          to="http://xpay.exrick.cn/pay?xboot"
          target="_blank"
          >立即开始</Button
        >
      </div>
    </Card>
  </div>
</template>
 
<script>
export default {
  name: "card2",
  components: {},
  props: {},
  data() {
    return {};
  },
  methods: {
    init() {},
  },
  mounted() {
    this.init();
  },
};
</script>
<style lang="less">
.dashboard4-card2 {
  height: 150px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  width: 100%;
  .ivu-card-body {
    width: 100%;
  }
  .info-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    .title-content {
      display: flex;
      flex-direction: column;
      .title {
        font-size: 20px;
        color: #3f4254;
        font-weight: 600;
        margin-bottom: 5px;
      }
      .desc {
        color: #7e8299;
      }
    }
  }
}
</style>