详情小程序
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.

74 lines
2.1 KiB

  1. <template>
  2. <view class="lf-w-100 lf-h-100">
  3. <view class="authen-top">
  4. <view class="lf-color-white"><u-icon name="integral-fill lf-m-r-15 lf-font-38"></u-icon></view>
  5. <view class="lf-font-28 lf-color-white">无法使用发布动态查看高级资料等进阶功能</view>
  6. </view>
  7. <view class="lf-row-between lf-p-l-32 lf-p-r-32 lf-m-b-30">
  8. <view class="authen-btn lf-font-32" @click="$url('/pages/my/memberDetails')">预览主页</view>
  9. <view class="authen-btn lf-font-32 pink-btn" @click="$url('/pages/my/uploadInfo')">马上认证</view>
  10. </view>
  11. <view class="lf-color-777 lf-font-24 lf-row-center" style="margin-bottom: 60rpx;">
  12. 已有医生银行教师外贸IT等单身完成认证
  13. </view>
  14. <view class="lf-p-l-32 lf-p-r-32" style="margin-bottom: 50rpx;">
  15. <view class="lf-color-222 lf-font-32 lf-m-b-20 authen-title lf-p-l-20">为什么要实名认证</view>
  16. <view class="lf-color-777 lf-font-28">
  17. 为给大家创建一个真实安全的优质的脱单环境确保会员真诚相亲每个都是人工审核
  18. </view>
  19. </view>
  20. <view class="lf-p-l-32 lf-p-r-32">
  21. <view class="lf-color-222 lf-font-32 lf-m-b-20 authen-title lf-p-l-20">100%隐私安全</view>
  22. <view class="lf-color-777 lf-font-28">
  23. 认证信息仅用于官方审核自动添加图片水印
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. </script>
  30. <style>
  31. .authen-top {
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: space-evenly;
  35. align-items: center;
  36. width: 686rpx;
  37. height: 185rpx;
  38. background: #E21196;
  39. border-radius: 10rpx;
  40. margin: 30rpx auto;
  41. }
  42. .authen-btn {
  43. width: 333rpx;
  44. height: 100rpx;
  45. border-radius: 10rpx;
  46. border: 1rpx solid #555555;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. color: #555555;
  51. }
  52. .pink-btn {
  53. color: #E21196!important;
  54. border: 1px solid #E21196!important;
  55. }
  56. .authen-title {
  57. position: relative;
  58. }
  59. .authen-title::after {
  60. content: '';
  61. position: absolute;
  62. left: 0;
  63. top: 8rpx;
  64. width: 8rpx;
  65. height: 30rpx;
  66. background: #E21196;
  67. border-radius: 4rpx;
  68. }
  69. </style>