my_wallet.html
2.4 KB
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
86
87
<!DOCTYPE html>
<html lang="en">
{include file="public/head"/}
<style>
body,
html {
background-color: #f9f9f9;
}
.my_wallet {
padding: 0.24rem 0.34rem 0;
}
.wallet_money {
width: 6.84rem;
height: 2.42rem;
margin: 0 auto;
border-radius: 0.16rem;
background-color: #fff;
}
.wallet_tips {
font-size: 0.28rem;
color: #06121E;
}
.wallet_coupon {
color: #FF5A4E;
font-size: 0.4rem;
margin: 0.14rem 0;
}
.wallet_num {
font-size: 0.32rem;
color: #06121E;
}
.wallet_single {
width: 6.84rem;
margin: 0.24rem auto 0;
border-radius: 0.16rem;
background-color: #fff;
}
.wallet_box {
padding: 0.4rem;
}
</style>
<body>
<div class="my_wallet">
<!-- 钱包余额 -->
<div class="wallet_money layout align_center justify_center flex_diection">
<div class="wallet_tips">我的钱包金额</div>
<div class="wallet_coupon">{$user.exp}</div>
<div class="wallet_num">约¥{$user.rmb}</div>
</div>
<div class="wallet_single" onclick="window.location.href='{:url('home/member/my_withdraw')}'">
<div class="wallet_box layout align_center flex_row justify">
<div class="wallet_tips">提现</div>
<div>
<img src="__CDN__/assets/advertising/img/right.png" alt="">
</div>
</div>
</div>
<div class="wallet_single" onclick="window.location.href='{:url('home/member/earnings_log')}'">
<div class="wallet_box layout align_center flex_row justify">
<div class="wallet_tips">收益记录</div>
<div>
<img src="__CDN__/assets/advertising/img/right.png" alt="">
</div>
</div>
</div>
<div class="wallet_single" onclick="window.location.href='{:url('home/member/withdraw_log')}'">
<div class="wallet_box layout align_center flex_row justify">
<div class="wallet_tips">提现记录</div>
<div>
<img src="__CDN__/assets/advertising/img/right.png" alt="">
</div>
</div>
</div>
</div>
{include file="public/js" /}
</body>
</html>