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

223 lines
5.8 KiB

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