inviteFriends.wxml
3.8 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<view class='container'>
<view class='top'>
<image src='../../img/aicon_56@2x.png'></image>
<view class='top_t'>
<view class='top_t_text'>累计获得奖励金额(元)</view>
<view class='top_t_num'>252</view>
</view>
<view class='top_right'>
<view class='top_right_icon'>
<image src='../../img/aicon_34@2x.png'></image>
</view>
<view class='top_right_text'>财务记录</view>
</view>
</view>
<!-- 取现盒子 -->
<view class='mid'>
<view class='mid_pic'>
<image src='../../img/aicon_35@2x.png'></image>
<view class='mid_content'>
<view class='mid_content_top'>可提现金额(元)</view>
<view class='mid_content_mid'>245</view>
<view class='mid_content_bottom'>已提现金额(元)<span class='fontSize'>130</span></view>
</view>
<!-- 提现 -->
<view class='mid_deposit'>
<view class='mid_deposit_text'>提现</view>
<view class='mid_deposit_icon'>
<image src='../../img/aicon_33@2x.png'></image>
</view>
</view>
</view>
</view>
<!-- 邀请盒子 -->
<view class='invite'>
<view class='invite_top'>
<view class='invite_top_select color_yellow'>有效邀请(15人)</view>
<view class='invite_top_select '>无效邀请(15人)</view>
</view>
<!-- 列表 -->
<view class='invite_box'>
<view class='invite_item'>
<view class='invite_item_left'>
<view class='invite_item_left_icon'>
<image src='../../img/aicon_49@2x.png'></image>
</view>
<view class='invite_item_left_text'>
宇宙无敌小可爱
</view>
</view>
<view class='invite_item_right'>
已报名2次
</view>
</view>
<view class='invite_item'>
<view class='invite_item_left'>
<view class='invite_item_left_icon'>
<image src='../../img/aicon_49@2x.png'></image>
</view>
<view class='invite_item_left_text'>
宇宙无敌小可爱
</view>
</view>
<view class='invite_item_right'>
已报名2次
</view>
</view>
</view>
<!-- 查看更多 -->
<view class='invite_bottom'>
<view class='invite_bottom_text'>查看更多</view>
<view class='invite_bottom_icon'>
<image src='../../img/aicon_01@2x.png'></image>
</view>
</view>
</view>
<!-- 提现弹层 -->
<view class='mask' style='display:none' >
<view class='mask_item'>
<!-- 关闭 -->
<view class='mask_item_top'>
<view></view>
<view class='mask_item_top_pic'>
<image src='../../img/aicon_47@2x.png'></image>
</view>
</view>
<!-- 提现申请 -->
<view class='mask_item_title'>
提现申请
</view>
<!-- 输入信息 -->
<view class='input_item marin_t'>
<view class='input_item_left'>支付宝账户</view>
<input placeholder='请输入正确的支付宝账户'></input>
</view>
<view class='input_item'>
<view class='input_item_left'>账户姓名</view>
<input placeholder='请输入支付宝姓名'></input>
</view>
<view class='input_item item3'>
<view class='input_item_left'>输入提现金额</view>
<input placeholder='请输入10的倍数'></input>
<view class='input_text'>元</view>
</view>
<!-- 提交 -->
<view class='button_box'>
<view class='button'>提交</view>
</view>
<!-- 提示字体 -->
<view class='bottom_text'>
奖励需满10元可提,提现金额必须为10的倍数,每日最多提现一次,提交成功后,会在三个工作日内转账至您的支付宝账号,请确保账号、姓名填写正确哦~
</view>
</view>
</view>
</view>