12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <form bindsubmit="saveIdCard" report-submit='true'>
- <view class="add-idCard">
- <view class="add-form">
- <image class="idcard-img" src="/static/images/face_know.png"></image>
- <view class='id-card-title'>当前业务需要人脸识别验证</view>
- <view class='id-card-txt'>信息将与当前微信绑定(身份证信息用于用与身份验证,以及跨境商品入境申报,请输入购买者姓名和身份证号码一致的身份证信息确保正常清关;姓名需要与身份证信息一致。)</view>
- <view class="form-item">
- <label>证件类型</label>
- <!-- <input class="input" name='idNo' value="居民身份证"/> -->
- <picker style="flex:1" bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
- <view class="picker">
- 居民身份证
- </view>
- </picker>
- </view>
- <view class="form-item">
- <label>姓名</label>
- <input type="text" class="input" name='username' value="{{curUser.username}}" placeholder="请输入姓名" />
- </view>
- <view class="form-item">
- <label>身份证号</label>
- <input type="idcard" class="input" name='idNo' placeholder="请输入身份证号" value="{{idNoM}}"/>
- <view bindtap="clearData">
- <image class="clear-icon" src="/static/images/clear-fb.png"></image>
- </view>
- </view>
- <view class="form-item">
- <radio-group class="radio-group" bindchange="radioChange">
- <radio class="radio radio-class {{item.name==2?'radio2-class':''}}" wx:for-items="{{items}}" wx:key="name" value="{{item.name}}" checked="{{item.checked}}">
- <text>{{item.value}}</text>
- </radio>
- </radio-group>
- </view>
- </view>
- <view class='id-card-agree-view'>
- <checkbox bindtap="checkBoxAgree" value="{{isAgree}}" checked="{{isAgree}}"/>
- <view class='id-card-txt2'>
- <text bindtap="checkBoxAgree">我同意****使用我所提交的信息用于人脸识别信息绑定。查看</text>
- <text style="color:blue;" bindtap="readUserService">《用户服务协议》</text>
- <text bindtap="checkBoxAgree">及</text>
- <text style="color:blue;" bindtap="readUserPrivacy">《隐私政策》</text>
- </view>
- </view>
- <view class="btns">
- <button class="save" form-type="submit">开始人脸识别验证</button>
- </view>
-
- <view style="padding-bottom: 100px;margin-top: 43px;">
- <view class='info-'>本服务由**公司提供技术支持</view>
- <view class='info-'>****保障您的个人信息安全</view>
- </view>
- </view>
- </form>
|