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
| <template>
| <div class="card-box">
| <view class="title" v-if="title">{{title}}</view>
| <view class="cardList">
| <view class="cardList-item" v-for="item in cardList" :key="item.title" @click="go(item.url)">
| <template v-if="item.badge">
| <view class="badge">
| <slot></slot>
| </view>
| </template>
|
| <image class="icon" :src="item.icon" mode=""></image>
| <view class="label">{{item.title}}</view>
| </view>
| </view>
| </div>
|
| </template>
|
| <script>
| export default {
| props: {
| cardList: {
| type: Array,
| required: true
| },
| title: {
| type: String,
| required: false
| }
| },
| methods: {
| go(url) {
| this.$u.func.globalNavigator(url)
| },
| },
| }
| </script>
|
| <style lang="scss" scoped>
| .card-box {
| padding: 0 20rpx;
|
| .title {
| font-size: 32rpx;
| padding: 10px;
| }
| }
|
| .cardList {
| display: flex;
| align-items: center;
| justify-content: space-between;
| width: 100%;
| background-color: #fff;
| border-radius: 28rpx;
| padding: 20rpx 40rpx;
| box-sizing: border-box;
|
| &-item {
| position: relative;
| font-size: 0;
| display: flex;
| align-items: center;
| flex-direction: column;
|
| .badge {
| position: absolute;
| top: -10rpx;
| right: -30rpx;
| }
|
| .icon {
| width: 48rpx;
| height: 48rpx;
| }
|
| .label {
| margin-top: 10rpx;
| font-size: 28rpx;
| color: #333333;
| }
| }
| }
| </style>
|
|