瑶都万能墙
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.

192 lines
3.0 KiB

8 months ago
7 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="page">
  3. <view class="beijin">
  4. <view class=" profile">
  5. <view class="o">
  6. <view class="headImage">
  7. <!-- <img src="https://k.sinaimg.cn/n/sinakd20117/0/w800h800/20240127/889b-4c8a7876ebe98e4d619cdaf43fceea7c.jpg/w700d1q75cms.jpg"
  8. alt="" /> -->
  9. <image
  10. src="https://k.sinaimg.cn/n/sinakd20117/0/w800h800/20240127/889b-4c8a7876ebe98e4d619cdaf43fceea7c.jpg/w700d1q75cms.jpg"
  11. mode="aspectFill"></image>
  12. </view>
  13. <view class="setUp">
  14. 设置
  15. </view>
  16. </view>
  17. <view class="account">
  18. <view class="number">
  19. 狐友1712378974678376
  20. </view>
  21. <view class="gender">
  22. <uv-icon name="man" size="34rpx" color="rgb(127 200 239)"></uv-icon>
  23. </view>
  24. <view class="authentication">
  25. 未认证
  26. </view>
  27. </view>
  28. <view class="Days">
  29. 你已经成为狐友133天啦~
  30. </view>
  31. <view class="box">
  32. <view class="followWithnterest">
  33. <view class="digit">
  34. 2
  35. </view>
  36. <view class="close">
  37. 关注
  38. </view>
  39. </view>
  40. <view class="shut">
  41. |
  42. </view>
  43. <view class="fenst">
  44. <view class="digit">
  45. 0
  46. </view>
  47. <view class="fans">
  48. 粉丝
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. <view class="Content">
  55. <uv-tabs :list="list" @click="click"
  56. :activeStyle="{color : '#000', fontWeight : 900}"
  57. lineColor="#00f"
  58. lineHeight="8rpx"
  59. lineWidth="50rpx"></uv-tabs>
  60. </view>
  61. <tabber select="3" />
  62. </view>
  63. </template>
  64. <script>
  65. import tabber from '@/components/base/tabbar.vue'
  66. export default {
  67. components: {
  68. tabber,
  69. },
  70. computed: {},
  71. data() {
  72. return {
  73. list: [{
  74. name: '关注',
  75. }, {
  76. name: '评论',
  77. }]
  78. }
  79. },
  80. methods: {
  81. click(item) {
  82. console.log('item', item);
  83. }
  84. }
  85. }
  86. </script>
  87. <style scoped lang="scss">
  88. .page {
  89. .beijin {
  90. background: linear-gradient(to bottom, rgb(85, 94, 123), rgb(45, 51, 73));
  91. background-color: black;
  92. color: white;
  93. .profile {
  94. padding: 40rpx;
  95. padding-top: 160rpx;
  96. .box {
  97. padding: 5rpx 10rpx;
  98. display: flex;
  99. align-items: center;
  100. text-align: center;
  101. .followWithnterest {
  102. .digit {
  103. padding: 20rpx;
  104. }
  105. .close {
  106. }
  107. }
  108. .shut{
  109. margin: 0rpx 20rpx;
  110. }
  111. .fenst {
  112. .digit {
  113. padding: 20rpx;
  114. }
  115. .fans {
  116. }
  117. }
  118. }
  119. .account {
  120. display: flex;
  121. align-items: center;
  122. .number {
  123. letter-spacing: 2rpx;
  124. margin-top: 10rpx;
  125. }
  126. .gender {
  127. margin: 20rpx 10rpx;
  128. }
  129. .authentication {
  130. font-size: 20rpx;
  131. }
  132. }
  133. .Days {
  134. margin-top: 15rpx;
  135. font-size: 22rpx;
  136. letter-spacing: 2rpx;
  137. }
  138. .o {
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. .headImage {
  143. image {
  144. height: 100px;
  145. width: 100px;
  146. border-radius: 50%;
  147. }
  148. }
  149. .setUp {
  150. }
  151. }
  152. }
  153. }
  154. .Content {}
  155. }
  156. </style>