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

197 lines
5.0 KiB

  1. <template>
  2. <view class="lf-w-100 lf-h-100">
  3. <view class="content lf-bg-white lf-m-b-30" style="padding: 0rpx">
  4. <view class="list lf-p-l-32 lf-p-r-32">
  5. <lf-image class="avatar" src="@/static/logo.png"></lf-image>
  6. <view class="info">
  7. <view class="lf-flex-1">
  8. <text>编号83927</text>
  9. <u-icon name="tags" class="lf-m-l-10"></u-icon>
  10. </view>
  11. <view class="lf-flex-1 lf-m-t-16">24··180cm·本科·未婚</view>
  12. <view class="lf-flex-1 lf-m-t-16">自有公司·金融/证券/保险·50万以上</view>
  13. </view>
  14. <view class="star">
  15. <u-icon name="star-fill lf-font-40" style="color: #D1D1D1;"></u-icon>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="info-content">
  20. <view class="lf-color-222 lf-font-32 authen-title lf-p-l-20">信息资料</view>
  21. <view class="lf-row-between lf-m-t-30" v-for="(item,index) of list" :key="index">
  22. <view class="lf-color-333 lf-font-28">{{item.title}}</view>
  23. <view class="lf-color-333 lf-font-28">{{item.content}}</view>
  24. </view>
  25. </view>
  26. <view class="lf-p-l-32 lf-p-r-32 info-tag">
  27. <view class="lf-color-222 lf-font-32 lf-m-b-30 authen-title lf-p-l-20">家庭与房车</view>
  28. <view class="lf-color-333 lf-font-28">
  29. 了解Ta的购车住房情况和家庭成员资料
  30. </view>
  31. <view class="lf-font-24 lf-m-t-20" style="color: #E21196;">
  32. 实名认证后可查看>>
  33. </view>
  34. </view>
  35. <view class="lf-p-l-32 lf-p-r-32 info-tag" style="margin-bottom: 130rpx;">
  36. <view class="lf-color-222 lf-font-32 lf-m-b-30 authen-title lf-p-l-20">择偶要求</view>
  37. <view class="lf-color-333 lf-font-28">
  38. 了解Ta的婚史身高年龄等各项择偶要求
  39. </view>
  40. <view class="lf-font-24 lf-m-t-20" style="color: #E21196;">
  41. 实名认证后可查看>>
  42. </view>
  43. </view>
  44. <view class="tabbar-bottom">
  45. <view class="lf-row-between">
  46. <view class="lf-flex-column" style="align-items: center;">
  47. <view>
  48. <u-icon name="kefu-ermai lf-font-32 lf-color-555"></u-icon>
  49. </view>
  50. <view class="lf-color-555 lf-font-24">
  51. 客服
  52. </view>
  53. </view>
  54. <view class="lf-flex-column" style="align-items: center;margin-left: 50rpx;">
  55. <view>
  56. <u-icon name="share lf-font-32 lf-color-555"></u-icon>
  57. </view>
  58. <view class="lf-color-555 lf-font-24">
  59. 分享
  60. </view>
  61. </view>
  62. <view class="lf-flex-column" style="align-items: center;margin-left: 50rpx;">
  63. <view>
  64. <u-icon name="more-dot-fill lf-font-32 lf-color-555"></u-icon>
  65. </view>
  66. <view class="lf-color-555 lf-font-24">
  67. 更多
  68. </view>
  69. </view>
  70. </view>
  71. <view>
  72. <button class="tabbar-btn">联系Ta</button>
  73. </view>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. export default {
  79. data() {
  80. return {
  81. list: [
  82. {title: '编号',content: '839748'},
  83. {title: '性别',content: '男'},
  84. {title: '婚史',content: '未婚'},
  85. {title: '年龄',content: '24岁(1996-10)'},
  86. {title: '身高',content: '180'},
  87. {title: '体重',content: '70'},
  88. {title: '属相',content: '鼠'},
  89. {title: '星座',content: '天秤座'},
  90. {title: '户籍',content: '其他省市'},
  91. {title: '学历',content: '本科'},
  92. {title: '单位性质',content: '私企'},
  93. {title: '所属行业',content: '广告/设计/传媒'},
  94. {title: '年薪',content: '6万-8万'},
  95. {title: '居住地区',content: '其他省市'},
  96. ]
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. page {
  103. background-color: #F5F5F5;
  104. }
  105. .tabbar-bottom {
  106. width: 100%;
  107. background-color: white;
  108. height: 110rpx;
  109. position: fixed;
  110. bottom: 0;
  111. display: flex;
  112. justify-content: space-between;
  113. padding: 15rpx 32rpx;
  114. }
  115. .tabbar-btn {
  116. width: 362rpx;
  117. height: 88rpx;
  118. background: #E21196;
  119. color: white;
  120. border-radius: 45rpx;
  121. }
  122. .info-content {
  123. width: 686rpx;
  124. height: 100%;
  125. background: #FFFFFF;
  126. border-radius: 10rpx;
  127. margin: 0 auto;
  128. padding: 30rpx;
  129. }
  130. .authen-title {
  131. position: relative;
  132. font-size: 32rpx;
  133. color: #131315;
  134. font-weight: 500;
  135. }
  136. .info-tag {
  137. width: 686rpx;
  138. height: 100%;
  139. background: #FFFFFF;
  140. border-radius: 10rpx;
  141. margin: 30rpx auto;
  142. padding: 30rpx;
  143. }
  144. .authen-title::after {
  145. content: '';
  146. position: absolute;
  147. left: 0;
  148. top: 8rpx;
  149. width: 8rpx;
  150. height: 30rpx;
  151. background: #E21196;
  152. border-radius: 4rpx;
  153. }
  154. .content{
  155. width: 100%;
  156. height: max-content;
  157. box-sizing: border-box;
  158. .list{
  159. padding: 30rpx 0;
  160. display: flex;
  161. width: 100%;
  162. height: max-content;
  163. display: flex;
  164. align-items: center;
  165. .avatar{
  166. width: 150rpx;
  167. height: 150rpx;
  168. border-radius: 10rpx;
  169. margin-right: 15rpx;
  170. background-color: #EEEEEE;
  171. }
  172. .info{
  173. flex: auto;
  174. min-height: 150rpx;
  175. max-width: 522rpx;
  176. display: flex;
  177. align-content: space-between;
  178. flex-wrap: wrap;
  179. flex-direction: column;
  180. }
  181. }
  182. }
  183. .star {
  184. width: 80rpx;
  185. height: 80rpx;
  186. background: #FFFFFF;
  187. box-shadow: 0px 2rpx 10rpx 5rpx rgba(226, 17, 150, 0.05);
  188. border-radius: 50%;
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. }
  193. </style>