pointdetail.wxml
2.9 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
<view>
<view wx:if="{{true}}" style="background:#fff;padding:40rpx;flex-direction: row;display: flex;">
<view style="width:100rpx;align-items: center;display: flex;flex-direction: column;">
<image src="/images/handled.png" style="width:40rpx;height:40rpx"></image>
<view style="width:4rpx;height:160rpx;background:#9ABCF5"></view>
<image src="/images/finishing.png" style="width:60rpx;height:60rpx"></image>
<view style="width:4rpx;height:80rpx;background:#9ABCF5"></view>
<view style="width:4rpx;height:80rpx;background:#e5e5e5"></view>
<view class="gray_dot"></view>
</view>
<view style="display: flex;flex-direction: column;">
<text class="text_black_34">发起提现申请</text>
<text style="color:#357aeb;font-size:34rpx;margin-top:160rpx">处理中</text>
<text style="color:#999;font-size:28rpx;">预计 10.18 22:23 前到账</text>
<text class="text_black_34" style="margin-top: 100rpx;">到账成功</text>
</view>
</view>
<view wx:else style="background:#fff;padding:40rpx;flex-direction: row;display: flex;">
<view style="width:100rpx;align-items: center;display: flex;flex-direction: column;">
<image src="/images/handled.png" style="width:40rpx;height:40rpx"></image>
<view style="width:4rpx;height:160rpx;background:#9ABCF5"></view>
<image src="/images/handling.png" style="width:40rpx;height:40rpx"></image>
<view style="width:4rpx;height:160rpx;background:#9ABCF5"></view>
<image src="/images/finished.png" style="width:60rpx;height:60rpx"></image>
</view>
<view style="display: flex;flex-direction: column;">
<text class="text_black_34">发起提现申请</text>
<text class="text_black_34" style="margin-top:150rpx">处理中</text>
<text style="color:#999;font-size:28rpx;">预计 10.18 22:23 前到账</text>
<text style="color:#357aeb;font-size:34rpx;margin-top: 120rpx;">到账成功</text>
</view>
</view>
<view style="background:#fff;padding: 30rpx;">
<view style="width:100%;height:1rpx;background:#e5e5e5"></view>
<view >
<text style="font-size:30rpx;color:#999;line-height: 80rpx;">提现金额</text>
<text style="font-size:34rpx;color:#333;line-height: 80rpx;float: right;">300.00</text>
</view>
<view >
<text style="font-size:30rpx;color:#999;line-height: 80rpx;">到账银行卡</text>
<text style="font-size:34rpx;color:#333;line-height: 80rpx;float: right;">招商银行 (尾号3776)</text>
</view>
<view >
<text style="font-size:30rpx;color:#999;line-height: 80rpx;">宝贝核销信息</text>
<text style="font-size:34rpx;color:#333;line-height: 80rpx;float: right;">¥75.00</text>
</view>
</view>
<view class="view_bottom">
<button class="btn_white_radius" style="margin:20rpx" bindtap='goBack'> 完成</button>
</view>
</view>