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.
 

81 lines
3.1 KiB

<!--pages/newRecruitment/newRecruitment.wxml-->
<block wx:if="{{ detail !== false }}">
<!-- 首次认证 -->
<view class="container" wx:if='{{ !detail || detail.state == 30 }}'>
<view class="list_item usually">
<text>姓名</text>
<input type="text" disabled value="{{name}}" disabled placeholder="上传身份证即自动填写" />
</view>
<view class="list_item usually">
<text>证件类型</text>
<input type="text" value="身份证" disabled placeholder="身份证" disabled />
</view>
<view class="list_item usually">
<text>证件号</text>
<input type="text" value="{{ id_card }}" disabled placeholder="上传身份证即自动填写" disabled />
</view>
<view class="identity_pic">
<view class="title">
<text>上传身份证照片</text>
</view>
<view class="identity_card" data-type="front" bindtap="upload">
<image class="bg" src="{{ front_url || '/images/me/contrary_bg_1.png'}}"></image>
<block wx:if='{{ !front_url }}'>
<image src="/images/me/camera.png"></image>
<text>正面照</text>
</block>
</view>
<view class="identity_card" data-type="back" bindtap="upload">
<image class="bg" src="{{ back_url || '/images/me/contrary_bg.png'}}"></image>
<block wx:if='{{ !back_url }}'>
<image src="/images/me/camera.png"></image>
<text>反面照</text>
</block>
</view>
<view class="agreement">
<image wx:if='{{ is_select }}' src="/images/me/check.png" class="circle" bindtap="select_fn" />
<image wx:else src="/images/me/unselected.png" class="circle" bindtap="select_fn" />
<text bindtap="select_fn">已阅读并同意</text>
<navigator hover-class="none" url="./protocol/protocol"><text style="color: #3476FE">《安全协议》</text></navigator>
</view>
</view>
<view class="issue">
<view bindtap="authentication">
<text>认证信息</text>
</view>
</view>
</view>
<!-- 审核中 or 已通过 -->
<view class="container_audit" wx:if='{{ (detail && detail.state == 11) || detail.state == 10 }}'>
<view class="header">
<view class="img" wx:if='{{ detail.state == 10 }}'>
<image src="/images/me/audit.png"></image>
</view>
<image wx:if='{{ detail.state == 11 }}' style='width: 120rpx; height: 120rpx' src="/images/me/attestation.png">
</image>
<block wx:if='{{ detail.state == 11 }}'>
<text>你的身份验证正在审核中...</text>
<text>请耐心等待,我们会以最快的速度帮您审核</text>
</block>
<block wx:if="{{ detail.state == 10 }}">
<text>您已通过实名认证</text>
</block>
</view>
<view class="footer">
<view>
<text>姓<text style="opacity: 0">替</text>名</text>
<text>{{ detail.name }}</text>
</view>
<view>
<text>证件号</text>
<text>{{ detail.idCard }}</text>
</view>
<text class="explain">身份证号只供平台确认信息使用</text>
</view>
</view>
</block>