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

138 lines
3.8 KiB

5 years ago
  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. <!-- #ifdef H5 -->
  57. <view style="height: 10rpx;"></view>
  58. <!-- #endif -->
  59. </view>
  60. </template>
  61. <script>
  62. </script>
  63. <style lang="scss">
  64. page {
  65. background-color: #F5F5F5;
  66. }
  67. .tag-content {
  68. width: 686rpx;
  69. flex-wrap: wrap;
  70. display: flex;
  71. }
  72. .edit-tag1 {
  73. height: 100%!important;
  74. }
  75. .personal-tag {
  76. width: max-content;
  77. padding: 8rpx 25rpx;
  78. height: 55rpx;
  79. border-radius: 28rpx;
  80. border: 1rpx solid #E21196;
  81. color: #E21196;
  82. font-size: 28rpx;
  83. margin-right: 15rpx;
  84. display: flex;
  85. justify-content: center;
  86. align-items: center;
  87. &:nth-child(4n) {
  88. margin-right: 0;
  89. }
  90. &:nth-child(n + 5) {
  91. margin-top: 20rpx;
  92. }
  93. }
  94. .edit-head {
  95. background-color: white;
  96. height: 400rpx;
  97. width: 100%;
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: space-around;
  101. align-items: center;
  102. }
  103. .edit-tag {
  104. width: 686rpx;
  105. height: 215rpx;
  106. background: #FFFFFF;
  107. border-radius: 10rpx;
  108. margin: 30rpx auto;
  109. display: flex;
  110. flex-direction: column;
  111. /* justify-content: space-around; */
  112. padding: 30rpx;
  113. }
  114. .edit-tag1 {
  115. height: 190rpx!important;
  116. }
  117. .authen-title {
  118. position: relative;
  119. }
  120. .authen-title::after {
  121. content: '';
  122. position: absolute;
  123. left: 0;
  124. top: 8rpx;
  125. width: 8rpx;
  126. height: 30rpx;
  127. background: #E21196;
  128. border-radius: 4rpx;
  129. }
  130. </style>