identity.wxml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <view class="identity__bg">
  2. <view class="identity__head">
  3. <image src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity_bg.png"></image>
  4. </view>
  5. <view class="identity_wid">
  6. <view class="identity_content" wx:if="{{!isCertificate}}">
  7. <view class="title">身份认证</view>
  8. <view class="identity_name">
  9. <view class="fl">
  10. <text>姓名</text>
  11. <input type="text" bindinput="realName" placeholder="真实姓名" value="{{realname}}" />
  12. <view class="clean"></view>
  13. </view>
  14. <!--<view class="btn" bindtap="d5cCertificate">获取认证信息</view>-->
  15. <view class="clean"></view>
  16. </view>
  17. <view class="identity_number">
  18. <text>身份证</text>
  19. <input type="text" placeholder="请输入您的真实身份证号" bindinput="idNo" value="{{idno}}" />
  20. <view class="clean"></view>
  21. </view>
  22. <view class="identity_btn" bindtap="confirmClick">立即认证</view>
  23. </view>
  24. <view class="identity_content" wx:if="{{isCertificate}}">
  25. <image class="identity__img" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity.png"></image>
  26. <view class="identity_headImg">
  27. <image wx:if="{{certificateData.head}}" src="{{certificateData.head}}"></image>
  28. <image wx:if="{{!certificateData.head}}" src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/labbit_default.png"></image>
  29. </view>
  30. <view class="info">{{certificateData.real_name}}</view>
  31. <view class="info">{{certificateData.identity_card_with_star}}</view>
  32. </view>
  33. </view>
  34. </view>