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

135 lines
3.7 KiB

  1. <template>
  2. <view class="lf-w-100 lf-h-100">
  3. <view class="edit-head">
  4. <view>
  5. <image src="../../static/logo.png" mode="aspectFill" style="width: 150rpx;height: 150rpx;border-radius: 10rpx;"></image>
  6. </view>
  7. <view class="lf-font-32 lf-color-222">
  8. 点击上传形象照
  9. </view>
  10. <view class="lf-font-28 lf-color-777 lf-p-l-32 lf-p-r-32">
  11. 确保个人形象照片为本人清晰正脸照一张良好的形象照更能吸引到别人哦
  12. </view>
  13. </view>
  14. <view class="edit-tag">
  15. <view class="lf-row-between lf-w-100 lf-m-b-30">
  16. <view class="lf-color-222 lf-font-32 authen-title lf-p-l-20">为什么要实名认证</view>
  17. <view class="lf-font-28 lf-color-777">去编辑<u-icon name="arrow-right lf-m-l-15 lf-font-22"></u-icon></view>
  18. </view>
  19. <view class="lf-color-777 lf-font-28">
  20. 为给大家创建一个真实安全的优质的脱单环境确保会员真诚相亲每个都是人工审核
  21. </view>
  22. </view>
  23. <view class="edit-tag edit-tag1">
  24. <view class="lf-row-between lf-w-100 lf-m-b-30">
  25. <view class="lf-color-222 lf-font-32 authen-title lf-p-l-20">基本资料</view>
  26. <view class="lf-font-28 lf-color-777">去完善<u-icon name="arrow-right lf-m-l-15 lf-font-22"></u-icon></view>
  27. </view>
  28. <view class="lf-color-777 lf-font-28 tag-content">
  29. <view class="personal-tag">其他省市</view>
  30. <view class="personal-tag">未婚</view>
  31. <view class="personal-tag">180cm</view>
  32. <view class="personal-tag">70kg</view>
  33. </view>
  34. </view>
  35. <view class="edit-tag edit-tag1">
  36. <view class="lf-row-between lf-w-100 lf-m-b-30">
  37. <view class="lf-color-222 lf-font-32 authen-title lf-p-l-20">工作经济家庭</view>
  38. <view class="lf-font-28 lf-color-777">去完善<u-icon name="arrow-right lf-m-l-15 lf-font-22"></u-icon></view>
  39. </view>
  40. <view class="lf-color-777 lf-font-28 tag-content">
  41. <view class="personal-tag">已购车无贷款</view>
  42. <view class="personal-tag">本科</view>
  43. <view class="personal-tag">6-8</view>
  44. </view>
  45. </view>
  46. <view class="edit-tag edit-tag1">
  47. <view class="lf-row-between lf-w-100 lf-m-b-30">
  48. <view class="lf-color-222 lf-font-32 authen-title lf-p-l-20">择偶要求</view>
  49. <view class="lf-font-28 lf-color-777">去完善<u-icon name="arrow-right lf-m-l-15 lf-font-22"></u-icon></view>
  50. </view>
  51. <view class="lf-color-777 lf-font-28 tag-content">
  52. <view class="personal-tag">未婚</view>
  53. <view class="personal-tag">180cm</view>
  54. </view>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. </script>
  60. <style lang="scss">
  61. page {
  62. background-color: #F5F5F5;
  63. }
  64. .tag-content {
  65. width: 686rpx;
  66. flex-wrap: wrap;
  67. display: flex;
  68. }
  69. .edit-tag1 {
  70. height: 100%!important;
  71. }
  72. .personal-tag {
  73. width: max-content;
  74. padding: 8rpx 25rpx;
  75. height: 55rpx;
  76. border-radius: 28rpx;
  77. border: 1rpx solid #E21196;
  78. color: #E21196;
  79. font-size: 28rpx;
  80. margin-right: 15rpx;
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. &:nth-child(4n) {
  85. margin-right: 0;
  86. }
  87. &:nth-child(n + 5) {
  88. margin-top: 20rpx;
  89. }
  90. }
  91. .edit-head {
  92. background-color: white;
  93. height: 400rpx;
  94. width: 100%;
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: space-around;
  98. align-items: center;
  99. }
  100. .edit-tag {
  101. width: 686rpx;
  102. height: 215rpx;
  103. background: #FFFFFF;
  104. border-radius: 10rpx;
  105. margin: 30rpx auto;
  106. display: flex;
  107. flex-direction: column;
  108. /* justify-content: space-around; */
  109. padding: 30rpx;
  110. }
  111. .edit-tag1 {
  112. height: 190rpx!important;
  113. }
  114. .authen-title {
  115. position: relative;
  116. }
  117. .authen-title::after {
  118. content: '';
  119. position: absolute;
  120. left: 0;
  121. top: 8rpx;
  122. width: 8rpx;
  123. height: 30rpx;
  124. background: #E21196;
  125. border-radius: 4rpx;
  126. }
  127. </style>