You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
|
2 years ago
|
<view class="ui-poptips {{pop==1?'ui-poptipsTop':''}}">
|
||
|
|
<view class='ui-poptips-cnt'>{{popErrorMsg}}</view>
|
||
|
|
</view>
|
||
|
|
<view class="steps">
|
||
|
|
<view class="step stepOne active">
|
||
|
|
<view class="stepNum">1</view>
|
||
|
|
<view class="stepText" style="margin-left: -27px;">身份证正面</view>
|
||
|
|
</view>
|
||
|
|
<view class="step stepTwo v-center active" style="flex-direction: column;flex:2;">
|
||
|
|
<view class="stepNum">2</view>
|
||
|
|
<view class="circle"></view>
|
||
|
|
<view class="stepText">身份证背面</view>
|
||
|
|
</view>
|
||
|
|
<view class="step stepThree active">
|
||
|
|
<view>
|
||
|
|
<view class="stepNum fr">3</view>
|
||
|
|
<view class="circle fr mt4"></view>
|
||
|
|
<view class="clb"></view>
|
||
|
|
<view class="stepText">确认信息</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<form bindsubmit="formSubmit">
|
||
|
|
<view class="">
|
||
|
|
<view class="wx-text-list">
|
||
|
|
<view class='wx-list-li'>
|
||
|
|
<view class='f16 mw-label '>
|
||
|
|
证件有效期
|
||
|
|
</view>
|
||
|
|
<view class="section flex-right">
|
||
|
|
<!-- <input cursor-spacing="50" type="text" class="text-left f18 {{userInformation.IDAuth == 1 ? 'pen' : ''}}" name="userName" value="{{userInformation.realName}}" /> -->
|
||
|
|
|
||
|
|
<picker mode="date" value="{{date}}" name="date" bindchange="bindDateChange">
|
||
|
|
<view class="picker">
|
||
|
|
<block wx:if="{{date == ''}}">
|
||
|
|
<view class="cccc tr dib">
|
||
|
|
请选择日期
|
||
|
|
</view>
|
||
|
|
</block>
|
||
|
|
<block wx:if="{{date != ''}}">
|
||
|
|
<view class="c3 tr dib">{{date}}</view>
|
||
|
|
</block>
|
||
|
|
<i class="iconfont icon-you f16 ml4 dib pr c9" style="line-height:1;top:1px;"></i>
|
||
|
|
</view>
|
||
|
|
</picker>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view></view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="f12 cf00 tc" style="margin-top:90px;">伯才依法保护你的信息安全</view>
|
||
|
|
<button type='primary' class="loginOut" formType="submit" style="margin-top: 10px;">
|
||
|
|
确定
|
||
|
|
</button>
|
||
|
|
</form>
|