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

227 lines
6.0 KiB

5 years ago
5 years ago
5 years ago
  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;" @click="$url('/pages/my/authentication')">
  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;" @click="$url('/pages/my/authentication')">
  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. <!-- 暂时隐藏部分 -->
  69. <!-- <view class="lf-flex-column" style="align-items: center;margin-left: 50rpx;">
  70. <view>
  71. <u-icon name="more-dot-fill lf-font-32 lf-color-555"></u-icon>
  72. </view>
  73. <view class="lf-color-555 lf-font-24">
  74. 更多
  75. </view>
  76. </view> -->
  77. </view>
  78. <view>
  79. <button class="tabbar-btn" @click="$url('/pages/my/contact')">联系Ta</button>
  80. </view>
  81. </view>
  82. <!-- #ifdef H5 -->
  83. <view style="height: 10rpx;"></view>
  84. <!-- #endif -->
  85. <!-- 回到顶部 -->
  86. <u-back-top :scrollTop="pageScrollTop"></u-back-top>
  87. </view>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. list: [
  94. {title: '编号',content: '839748'},
  95. {title: '性别',content: '男'},
  96. {title: '婚史',content: '未婚'},
  97. {title: '年龄',content: '24岁(1996-10)'},
  98. {title: '身高',content: '180'},
  99. {title: '体重',content: '70'},
  100. {title: '属相',content: '鼠'},
  101. {title: '星座',content: '天秤座'},
  102. {title: '户籍',content: '其他省市'},
  103. {title: '学历',content: '本科'},
  104. {title: '单位性质',content: '私企'},
  105. {title: '所属行业',content: '广告/设计/传媒'},
  106. {title: '年薪',content: '6万-8万'},
  107. {title: '居住地区',content: '其他省市'},
  108. ]
  109. }
  110. }
  111. }
  112. </script>
  113. <style>
  114. page {
  115. background-color: #F5F5F5;
  116. }
  117. </style>
  118. <style lang="scss" scoped>
  119. .tabbar-bottom {
  120. width: 100%;
  121. background-color: white;
  122. height: 110rpx;
  123. position: fixed;
  124. bottom: 0;
  125. display: flex;
  126. justify-content: space-between;
  127. padding: 15rpx 32rpx;
  128. }
  129. .tabbar-btn {
  130. width: 362rpx;
  131. height: 88rpx;
  132. background: #E21196;
  133. color: white;
  134. border-radius: 45rpx;
  135. }
  136. .info-content {
  137. width: 686rpx;
  138. height: 100%;
  139. background: #FFFFFF;
  140. border-radius: 10rpx;
  141. margin: 0 auto;
  142. padding: 30rpx;
  143. }
  144. .authen-title {
  145. position: relative;
  146. font-size: 32rpx;
  147. color: #131315;
  148. font-weight: 500;
  149. }
  150. .info-tag {
  151. width: 686rpx;
  152. height: 100%;
  153. background: #FFFFFF;
  154. border-radius: 10rpx;
  155. margin: 30rpx auto;
  156. padding: 30rpx;
  157. }
  158. .authen-title::after {
  159. content: '';
  160. position: absolute;
  161. left: 0;
  162. top: 8rpx;
  163. width: 8rpx;
  164. height: 30rpx;
  165. background: #E21196;
  166. border-radius: 4rpx;
  167. }
  168. .content{
  169. width: 100%;
  170. height: auto;
  171. box-sizing: border-box;
  172. padding-bottom: 30rpx;
  173. .swiper{
  174. width: 750rpx;
  175. height: 750rpx;
  176. }
  177. .list{
  178. padding-top: 30rpx;
  179. display: flex;
  180. width: 100%;
  181. height: max-content;
  182. display: flex;
  183. align-items: center;
  184. justify-content: space-between;
  185. .avatar{
  186. width: 150rpx;
  187. height: 150rpx;
  188. border-radius: 10rpx;
  189. margin-right: 15rpx;
  190. background-color: #EEEEEE;
  191. }
  192. .info{
  193. min-height: 150rpx;
  194. width: 598rpx;
  195. display: flex;
  196. align-content: space-between;
  197. flex-wrap: wrap;
  198. flex-direction: column;
  199. }
  200. }
  201. .sketch{
  202. width: 686rpx;
  203. height: 160rpx;
  204. background: #F5F5F5;
  205. border-radius: 10rpx 30rpx 10rpx 30rpx;
  206. margin: 60rpx auto 0;
  207. box-sizing: border-box;
  208. padding: 30rpx;
  209. font-size: 24rpx;
  210. color: #333333;
  211. }
  212. }
  213. .star {
  214. width: 80rpx;
  215. height: 80rpx;
  216. background: #FFFFFF;
  217. box-shadow: 0px 2rpx 10rpx 5rpx rgba(226, 17, 150, 0.05);
  218. border-radius: 50%;
  219. display: flex;
  220. align-items: center;
  221. justify-content: center;
  222. }
  223. </style>