verify_info.wxml
2.3 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
<view class='page'>
<view style='background:#FDFBEA;height:96rpx;width:100%;text-align:center'>
<text style='font-size:30rpx;color:#E47C4A;font-family:PingFang-SC-Medium;line-height:96rpx'>为了您的账户安全,请先完成实名认证</text>
</view>
<view hidden="{{is_foreigner}}" style='display:flex;flex-direction:row;'>
<!--左边 身份信息 -->
<view style='margin:40rpx 0 30rpx 130rpx'>
<view style='display:flex;flex-direction:row;height:48rpx;width:100%;'>
<image style='margin-left:30rpx; width: 24px;height: 24px' src='/images/step_first_blue.png'></image>
<view style='background:#357aeb;width:90px;height:4rpx;align-self:center;'></view>
</view>
<view style='font-size: 17px;color: #000;margin-top:16rpx'>身份信息</view>
</view>
<!--右边 上传证件照 -->
<view style='margin:40rpx 100rpx 30rpx 0'>
<view style='display:flex;flex-direction:row;height:48rpx;width:100%;'>
<view style='background:#bcc3c7;width:90px;height:4rpx;align-self:center;'></view>
<image style='margin-right:30rpx; width: 24px;height: 24px' src='/images/step_second_gray.png'></image>
</view>
<view style='font-size: 17px;color: #999;margin-top:16rpx;text-align:right'>上传证件照</view>
</view>
</view>
<view style='width: 100%;height: auto;flex-direction: column;display: flex;'>
<view style='padding-left: 30rpx;padding-right: 30rpx;'>
<text class='text_777_30 float_left' style='line-height: 90rpx'>姓名</text>
<input class='input_wrap' placeholder='请输入您的真实姓名' name='person_name' value='{{name}}' placeholder-class='text_999_30' maxlength='15' bindinput='nameInput'></input>
</view>
<view class="divide_line_30"></view>
<view style='padding-left: 30rpx;padding-right: 30rpx;'>
<text class='text_777_30 float_left' style='line-height: 90rpx'>身份证件号码</text>
<input class='input_wrap' placeholder='请输入您的身份证号码' placeholder-class='text_999_30' name='id_card_no' maxlength='18' bindinput="idChange" type='idcard'></input>
</view>
</view>
<view class='bottom_btn_wrap'>
<view class='btn_blue_radius' bindtap="gonext">
<view class='text_white_34'>{{btn_text}}</view>
</view>
</view>
</view>