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.
33 lines
1.5 KiB
33 lines
1.5 KiB
<!--pages/home/authory/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">实名认证</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-list menu no-card sm-border margin-top">
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">姓名:</view>
|
|
<input maxlength="8" value="{{form.realName}}" disabled="{{disabled}}" style="width:65%" placeholder="请输入真实姓名" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx" bindtap="showPicker">
|
|
<view style="min-width:170rpx">证件类型:</view>
|
|
<input style="flex:1" disabled="true" bindblur="inputBlur" placeholder="请选择证件类型"></input>
|
|
<text class="cuIcon-right text-gray" style="font-size:18px"></text>
|
|
</view>
|
|
</view> -->
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">身份证号码:</view>
|
|
<input disabled="{{disabled}}" value="{{form.certificateNo}}" style="width:65%" type="idcard" bindblur="inputBlur" placeholder="请输入身份证号码" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="flex flex-direction" style="padding: 72rpx 32rpx">
|
|
<wux-button block type="positive" bind:click="submitForm">进行认证</wux-button>
|
|
</view>
|
|
|
|
<picker-view id="picker-view" bindcustomevent="onPickerChange"></picker-view>
|
|
<wux-dialog id="wux-dialog" />
|