verify_idcard.wxml
2.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
<view class='page'>
<view style='display:flex;flex-direction:row;background:#fff'>
<!--左边 身份信息 -->
<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:#357aeb;width:90px;height:4rpx;align-self:center;'></view>
<image style='margin-right:30rpx; width: 24px;height: 24px' src='/images/step_second_blue.png'></image>
</view>
<view style='font-size: 17px;color: #000;margin-top:16rpx;text-align:right'>上传证件照</view>
</view>
</view>
<view class='id_background' bindtap="chooseImage" id='id_face'>
<image class='id_image_wrap' src="{{facepath?facepath:'/images/id_face.png'}}"></image>
</view>
<view class='id_background' bindtap="chooseImage" id='id_back'>
<image class='id_image_wrap' src="{{backpath?backpath:'/images/id_back.png'}}"></image>
</view>
<view style='background-color:#fff;padding:0 32rpx ;'>
<view class='item_body'>
<text class='text_666_28 float_left'>签发机关</text>
<text class='text_333_28 float_right'>{{idInfo.issued_by}}</text>
</view>
<view class="divide_line"></view>
<view class='item_body'>
<text class='text_666_28 float_left'>有效期</text>
<text class='text_333_28 float_right'>{{idInfo.valid_date}}</text>
</view>
</view>
<view class='bottom_btn_wrap'>
<view class='btn_blue_radius' bindtap="gonext">
<view class='text_white_34'>提交</view>
</view>
</view>
</view>