| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <view class="identity__bg">
- <view class="identity__head">
- <image src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity_bg.png"></image>
- </view>
- <view class="identity_wid">
- <view class="identity_content" wx:if="{{!isCertificate}}">
- <view class="title">身份认证</view>
- <view class="identity_name">
- <view class="fl">
- <text>姓名</text>
- <input type="text" bindinput="realName" placeholder="真实姓名" value="{{realname}}" />
- <view class="clean"></view>
- </view>
- <!--<view class="btn" bindtap="d5cCertificate">获取认证信息</view>-->
- <view class="clean"></view>
- </view>
- <view class="identity_number">
- <text>身份证</text>
- <input type="text" placeholder="请输入您的真实身份证号" bindinput="idNo" value="{{idno}}" />
- <view class="clean"></view>
- </view>
- <view class="identity_btn" bindtap="confirmClick">立即认证</view>
- </view>
- <view class="identity_content" wx:if="{{isCertificate}}">
- <image class="identity__img" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity.png"></image>
- <view class="identity_headImg">
- <image wx:if="{{certificateData.head}}" src="{{certificateData.head}}"></image>
- <image wx:if="{{!certificateData.head}}" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/labbit_default.png"></image>
- </view>
- <view class="info">{{certificateData.real_name}}</view>
- <view class="info">{{certificateData.identity_card_with_star}}</view>
- </view>
- </view>
- </view>
|