refundInfo.wxml
4.0 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
<!--pages/main/finalpay/refundInfo/refundInfo.wxml-->
<view class="page">
<form style="width:100%;" bindsubmit='formSubmit'>
<view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
<text class="text_gray7_34">开户人姓名</text>
<input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' value="{{name}}" disabled="true"></input>
</view>
<view class='divide_line_30'></view>
<view style="height:104rpx;padding:0 30rpx;background-color:#fff">
<text class="text_gray7_34" style="line-height:104rpx">银行卡号</text>
<image class='image_camera' src='/images/camera.png' bindtap='bindbank'></image>
<input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='bank_card_no' value="{{bank_card_no}}" maxlength='19' type='number'></input>
</view>
<view class='divide_line_30'></view>
<!-- <view style="height:104rpx;padding:0 30rpx;background-color:#fff">
<text class="text_gray7_34" style="line-height:104rpx">开户银行名称</text>
<input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='bank' value="{{bank}}"></input>
</view> -->
<picker style="height:104rpx;padding-left:30rpx;background-color:#fff" mode="selector" bindchange="bindRegionChange" range="{{bankList}}" >
<text class="text_gray7_34">开户银行名称</text>
<image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
<view wx:if="{{bank.length>0}}" class="input_wrap rigion_choosed">
{{bank}}
</view>
<view wx:else class="input_wrap rigion_notchoosed}}">
请选择开户银行 </view>
</picker>
<view class='divide_line_30'></view>
<!-- <view style="height:104rpx;padding:0 30rpx;background-color:#fff">
<text class="text_gray7_34" style="line-height:104rpx">开户银行省份</text>
<input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='bank_card_province' value="{{bank_card_province}}"></input>
</view> -->
<picker style="height:104rpx;padding-left: 30rpx;background-color:#fff" mode="selector" bindchange="bindRegionChange" range="{{province}}" >
<text class="text_gray7_34">开户银行省份</text>
<image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
<view wx:if="{{bank_province.length>0}}" class="input_wrap rigion_choosed">
{{bank_province}}
</view>
<view wx:else class="input_wrap rigion_notchoosed}}">
请选择开户银行省份 </view>
</picker>
<view class="btn_bottom">
<button class="btn_bottom" formType="submit">保存</button>
</view>
</form>
<view class="mask" wx:if="{{show_modal}}"></view>
<view class='modal_lg' style='' wx:if="{{show_modal}}">
<!-- <view style='width:100%;display:flex;flex-direction:column;max-height:560rpx;overflow-y: scroll;'></view> -->
<view class="text_title"> 确认提交吗?</view>
<view style="margin:2rpx 40rpx">
<text class="text_gray6_28">姓名:</text>
<text class="text_gray6_28 float_right">{{name}}</text>
</view>
<view style="margin:2rpx 40rpx">
<text class="text_gray6_28">银行卡号:</text>
<text class="text_gray6_28 float_right">{{bank_card_no}}</text>
</view>
<view style="margin:2rpx 40rpx">
<text class="text_gray6_28">开户行名称:</text>
<text class="text_gray6_28 float_right">{{bank}}</text>
</view>
<view style="margin:2rpx 40rpx">
<text class="text_gray6_28">开户行省份:</text>
<text class="text_gray6_28 float_right">{{bank_province}}</text>
</view>
<view class='divide_line_f5f5f5' style="margin-top:30rpx"></view>
<view style='width:100%;display: flex;'>
<text class='text_cancel' bindtap='commitCancel'>取消</text>
<view style='width:1px;background:#F5F5F5;'></view>
<text class='text_confirm' bindtap='commitConfirm'>确认</text>
</view>
</view>
</view>