You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.4 KiB
28 lines
1.4 KiB
<view> |
|
<view class="container" wx:if="{{ authFlag }}"> |
|
<view class="flex center" style="padding-top: 64px;"> |
|
<view style="height: 90px"> |
|
<image src="/images/logo.png" mode="heightFix" style="height: 100%;"></image> |
|
</view> |
|
</view> |
|
<view class="text-center h1">湖南省公安厅</view> |
|
<view class="text-center h2">厅(局)长信箱即接即办用户实名认证</view> |
|
<view style="padding: 0 var(--cell-horizontal-padding,16px); margin-top: 74px;"> |
|
<van-button type="primary" custom-style="width: 100%; --button-normal-font-size: 17px" bindtap="switchAuthFlag">实名认证登录</van-button> |
|
</view> |
|
</view> |
|
<view class="card" wx:else> |
|
<view class="header"> |
|
<image src="/images/renzheng.png" mode="widthFix" class="text-center" style="width: 120px;"></image> |
|
</view> |
|
<van-field label="证件类型"> |
|
<text slot="input">第二代居民身份证</text> |
|
</van-field> |
|
<van-field model:value="{{ realName }}" label="姓名" placeholder="请输入姓名" required bind:input="onInput" /> |
|
<van-field model:value="{{ idCard }}" label="证件号码" placeholder="请输入证件号码" required bind:input="onInput" /> |
|
<view style="padding: 24px 24px 12px"> |
|
<van-button block type="primary" disabled wx:if="{{ disabled }}">下一步</van-button> |
|
<van-button block type="primary" wx:else bind:tap="handleFaceAuth">下一步</van-button> |
|
</view> |
|
</view> |
|
</view> |