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
| <template>
| <view class="container">
| <view class="card-item">
| <view class="card-header">
| <text class="name">会员卡</text>
| <text>NO 23564</text>
| </view>
| <view class="card-content">
| <text>
| ¥ 5656789
| </text>
| </view>
| <view class="card-footer">
| <text>赠送金额 ¥ 5656</text>
| <text>有效期:2025-10-20</text>
| </view>
| </view>
| </view>
| </template>
|
| <script>
| export default{
| components:{
|
| },
| data(){
| return {
|
| }
| },
| methods:{
|
| }
| }
| </script>
|
| <style>
| .container{
| padding: 10px 10px;
| }
| .card-item{
| background: #F0AD4E;
| color: #FFFFFF;
| font-size: 14px;
| padding: 12px 15px;
| border-radius: 4px;
| }
| .card-header{
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
| .card-header .name{
| font-size: 22px;
| font-weight: bold;
| }
| .card-content{
|
| }
| .card-footer{
|
| }
| </style>
|
|