wang-hao-jie
2021-11-01 c73d38d71545cea55f5ce0f5a95cb2b3e199a6e6
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
<template>
  <div>
    <Card :padding="0" :bordered="false" class="card-button">
      <div class="info-wrap">
        <div class="left">
          <div class="title">
            立即获取<b>完整版</b>获得更多的功能
            <Icon type="md-arrow-forward" />
          </div>
          <Button to="http://xpay.exrick.cn/pay?xboot" target="_blank" type="success" style="width: 130px">升级账户</Button>
        </div>
        <img class="right" src="@/assets/dashboard/process.png"/>
      </div>
    </Card>
  </div>
</template>
 
<script>
export default {
  name: "card-button",
  components: {},
  props: {},
  data() {
    return {};
  },
  methods: {
    init() {},
  },
  mounted() {
    this.init();
  },
};
</script>
<style lang="less" scoped>
.card-button {
  background: #5b73e8;
  .info-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 175px;
    padding: 20px;
    .left {
      height: 115px;
      width: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      .title {
        color: #fff;
        font-size: 18px;
      }
    }
    .right {
      height: 130px;
      width: 150px;
    }
  }
}
</style>