金诚优选前端代码
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.

139 lines
3.7 KiB

  1. <template>
  2. <view>
  3. <lf-nav :spreadOut="true" :showIcon="true" bgColor="#F3F8F8" title="个人主页"></lf-nav>
  4. <view class="user-top">
  5. <view class="lf-row-between lf-w-100">
  6. <view class="lf-flex">
  7. <view class="tag-father">
  8. <image src="https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png" mode="aspectFill" class="head-img"></image>
  9. <view class="head-tag">V</view>
  10. </view>
  11. <view class="lf-flex-column lf-m-l-20">
  12. <text class="lf-font-42 lf-color-black lf-font-bold">最新</text>
  13. <text class="lf-font-28 lf-color-black">0 关注 | 0 粉丝</text>
  14. </view>
  15. </view>
  16. <view>
  17. <button class="head-btn">关注</button>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="lf-m-32">
  22. <view class="lf-font-48 lf-color-black lf-font-bold">
  23. 08月27日
  24. </view>
  25. <view class="lf-color-777 lf-font-24">
  26. 18:39
  27. </view>
  28. <view class="lf-flex-wrap lf-m-t-20">
  29. <image v-for="item in 9" class="qzone-img" src="https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png" mode="aspectFill"></image>
  30. </view>
  31. <view class="lf-m-t-30 lf-row-between lf-p-l-50 lf-p-r-50">
  32. <view class="lf-row-center">
  33. <text class="lf-iconfont icon-shoucang"></text>
  34. <text class="lf-font-24 lf-color-777 lf-m-l-10">379</text>
  35. </view>
  36. <view class="lf-row-center">
  37. <text class="lf-iconfont icon-fabu"></text>
  38. <text class="lf-font-24 lf-color-777 lf-m-l-10">3579</text>
  39. </view>
  40. <view class="lf-row-center">
  41. <text class="lf-iconfont icon-fenxiang"></text>
  42. <text class="lf-font-24 lf-color-777 lf-m-l-10">63</text>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="lf-m-32">
  47. <view class="lf-font-48 lf-color-black lf-font-bold">
  48. 08月27日
  49. </view>
  50. <view class="lf-color-777 lf-font-24">
  51. 18:39
  52. </view>
  53. <view class="lf-flex-wrap lf-m-t-20">
  54. <image v-for="item in 9" class="qzone-img" src="https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png" mode="aspectFill"></image>
  55. </view>
  56. <view class="lf-m-t-30 lf-row-between lf-p-l-50 lf-p-r-50">
  57. <view class="lf-row-center">
  58. <text class="lf-iconfont icon-shoucang"></text>
  59. <text class="lf-font-24 lf-color-777 lf-m-l-10">379</text>
  60. </view>
  61. <view class="lf-row-center">
  62. <text class="lf-iconfont icon-fabu"></text>
  63. <text class="lf-font-24 lf-color-777 lf-m-l-10">3579</text>
  64. </view>
  65. <view class="lf-row-center">
  66. <text class="lf-iconfont icon-fenxiang"></text>
  67. <text class="lf-font-24 lf-color-777 lf-m-l-10">63</text>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. </script>
  75. <style>
  76. page {
  77. background-color: white;
  78. }
  79. </style>
  80. <style lang="scss" scoped>
  81. .tag-father {
  82. position: relative;
  83. }
  84. .head-tag {
  85. color: white;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. text-align: center;
  90. font-size: 24rpx;
  91. width: 36rpx;
  92. height: 36rpx;
  93. border-radius: 50%;
  94. background-color: #15716E;
  95. border: 1rpx solid #FFFFFF;
  96. position: absolute;
  97. left: 76rpx;
  98. top: 86rpx;
  99. z-index: 99;
  100. }
  101. .qzone-img {
  102. width: 220rpx;
  103. height: 220rpx;
  104. border-radius: 10rpx;
  105. margin-right: 12rpx;
  106. &:nth-child(3n) {
  107. margin-right: 0;
  108. }
  109. &:nth-child(n + 4) {
  110. margin-top: 12rpx;
  111. }
  112. }
  113. .user-top {
  114. background-color: #F3F8F8;
  115. height: 236rpx;
  116. padding: 60rpx;
  117. display: flex;
  118. align-items: center;
  119. }
  120. .head-img {
  121. width: 120rpx;
  122. height: 120rpx;
  123. border-radius: 50%;
  124. }
  125. .head-btn {
  126. width: 160rpx;
  127. height: 70rpx;
  128. background: #15716E;
  129. display: flex;
  130. align-items: center;
  131. font-size: 28rpx;
  132. color: white;
  133. justify-content: center;
  134. border-radius: 35rpx;
  135. }
  136. </style>