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
| <template>
| <div>
| <Card
| :padding="0"
| class="card3"
| :bordered="false"
| :style="{
| backgroundImage:
| 'url(' + require('@/assets/dashboard/people.png') + ')',
| }"
| >
| <div class="info-wrap">
| <div class="title">创建SaaS应用<br />并制作数据报表</div>
| <Button
| type="success"
| size="large"
| style="width: 130px"
| to="http://xpay.exrick.cn/pay?xboot"
| target="_blank"
| >创建应用</Button
| >
| </div>
| </Card>
| </div>
| </template>
|
| <script>
| export default {
| name: "card3",
| components: {},
| props: {},
| data() {
| return {};
| },
| methods: {
| init() {},
| },
| mounted() {
| this.init();
| },
| };
| </script>
| <style lang="less" scoped>
| .card3 {
| background-size: 40% auto;
| background-position: 95% 50%;
| background-repeat: no-repeat;
| background-color: #6f42c1;
| height: 175px;
| padding: 26px 30px;
| .info-wrap {
| display: flex;
| flex-direction: column;
| .title {
| font-size: 20px;
| font-weight: 600;
| color: #fff;
| margin-bottom: 20px;
| }
| }
| }
| </style>
|
|