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

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