时空网前端
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.

62 lines
2.4 KiB

  1. <template>
  2. <view>
  3. <view class="bg-white lf-p-t-40 lf-p-b-40 flex justify-around align-center text-center solid-bottom">
  4. <view class="lf-font-32" style="width: 50%;border-right: 1px solid rgba(0, 0, 0, 0.1);box-sizing: border-box;" :class="tabIndex ==0?'text-orange':'text-black1'" @click="tabIndex = 0">内部粉丝</view>
  5. <view class="lf-font-32" style="width: 50%;" :class="tabIndex ==1?'text-orange':'text-black1'" @click="tabIndex = 1">外部粉丝</view>
  6. </view>
  7. <block v-if="tabIndex == 0">
  8. <view class="flex lf-p-30 solid-bottom">
  9. <view>
  10. <image src="../../static/center/shop-logo.png" style="height: 120rpx;width: 120rpx;" mode="aspectFill"></image>
  11. </view>
  12. <view class="flex flex-direction justify-around lf-p-l-20">
  13. <view class="lf-font-32 text-black1">时空网的内部网友 <text class="bg-red lf-font-24 lf-m-l-10" style="border-radius: 30rpx;padding: 5rpx 16rpx;">达人</text></view>
  14. <view class="lf-font-24 lf-color-gray">2021-7-6 21:32:53</view>
  15. </view>
  16. </view>
  17. <view class="flex lf-p-30 solid-bottom">
  18. <view>
  19. <image src="../../static/center/shop-logo.png" style="height: 120rpx;width: 120rpx;" mode="aspectFill"></image>
  20. </view>
  21. <view class="flex flex-direction justify-around lf-p-l-20">
  22. <view class="lf-font-32 text-black1">时空网的内部网友</view>
  23. <view class="lf-font-24 lf-color-gray">2021-7-6 21:32:53</view>
  24. </view>
  25. </view>
  26. </block>
  27. <block v-else>
  28. <view class="flex lf-p-30 solid-bottom">
  29. <view>
  30. <image src="../../static/center/shop-logo.png" style="height: 120rpx;width: 120rpx;" mode="aspectFill"></image>
  31. </view>
  32. <view class="flex flex-direction justify-around lf-p-l-20">
  33. <view class="lf-font-32 text-black1">时空网的外部网友</view>
  34. <view class="lf-font-24 lf-color-gray">2021-7-6 21:32:53</view>
  35. </view>
  36. </view>
  37. <view class="flex lf-p-30 solid-bottom">
  38. <view>
  39. <image src="../../static/center/shop-logo.png" style="height: 120rpx;width: 120rpx;" mode="aspectFill"></image>
  40. </view>
  41. <view class="flex flex-direction justify-around lf-p-l-20">
  42. <view class="lf-font-32 text-black1">时空网的外部网友</view>
  43. <view class="lf-font-24 lf-color-gray">2021-7-6 21:32:53</view>
  44. </view>
  45. </view>
  46. </block>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. tabIndex: 0
  54. }
  55. }
  56. }
  57. </script>
  58. <style>
  59. </style>