blob: bb27689c0d828cc246408c773452c7eb1638ae15 [file] [log] [blame]
binquan.qiu7f2665f2020-03-27 17:19:57 +08001<view class="container">
2
3 <view class="global-background">
4 <view class="inline-item center" style="margin-top: 50rpx;">
5 <view class="input-desc">
6 姓名
7 </view>
8 <input placeholder="请输入真实姓名" style="width: 70%;" bindinput="setName"></input>
9 </view>
10 <view class="inline-item center" >
11 <view class="input-desc">
12 证件类型
13 </view>
14 <picker style="width: 70%;" bindchange="bindPickerChange" value="{{index}}" range="{{array}}">{{array[index]}}</picker>
15 </view>
16 <view class=" inline-item center ">
17 <view class="input-desc ">
18 证件号
19 </view>
20 <input placeholder="请输入证件号 " style="width: 70%; " bindinput="setIdCode"></input>
21 </view>
22 <view class="inline-item center " >
23 <view class="input-desc ">
24 银行卡号
25 </view>
26 <input placeholder="市民卡对应的银行卡号 " style="width: 70%; " bindinput="setBankcard"></input>
27 </view>
28 <button bindtap="doNext" class="long-btn " style="width: 90%; ">下一步</button>
29 </view>
30</view>