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

88 lines
1.6 KiB

9 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
8 months ago
9 months ago
9 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
8 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
  1. <template>
  2. <view class="works" @click="$emit('click')">
  3. <userHeadItem :item="item" />
  4. <daynamicInfo :item="item" />
  5. <view class="bottom">
  6. <!-- 浏览 -->
  7. <view class="browse">
  8. {{ item.isBrowse }}
  9. <view class="bontt">
  10. <uv-icon name="eye-fill"></uv-icon>
  11. </view>
  12. </view>
  13. <!-- 评论 -->
  14. <view class="browse">
  15. {{ item.isComment }}
  16. <view class="bontt">
  17. <uv-icon name="chat-fill"></uv-icon>
  18. </view>
  19. </view>
  20. <view class="browse">
  21. 22
  22. <view class="bontt">
  23. <uv-icon name="thumb-up-fill"></uv-icon>
  24. </view>
  25. <!-- 点赞 -->
  26. </view>
  27. <view class="browse">
  28. 0
  29. <view class="bontt">
  30. <uv-icon name="attach"></uv-icon>
  31. </view>
  32. </view>
  33. <callPhone :phone="item.phone" :sexName="item.sex" />
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
  39. import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
  40. export default {
  41. components: {
  42. userHeadItem,
  43. daynamicInfo,
  44. },
  45. props: {
  46. item: {},
  47. },
  48. data() {
  49. return {}
  50. },
  51. methods: {},
  52. }
  53. </script>
  54. <style scoped lang="scss">
  55. .works {
  56. margin: 40rpx 20rpx;
  57. background-color: #fff;
  58. padding: 40rpx;
  59. border-radius: 20rpx;
  60. box-shadow: 0 0 6rpx 6rpx #00000011;
  61. .bottom {
  62. display: flex;
  63. margin-top: 20rpx;
  64. font-size: 24rpx;
  65. .browse {
  66. display: flex;
  67. justify-content: center;
  68. align-items: center;
  69. margin: 0rpx 30rpx;
  70. color: rgb(132, 132, 132);
  71. margin-left: 10rpx;
  72. }
  73. .bontt{
  74. margin: 0rpx 5rpx;
  75. }
  76. }
  77. }
  78. </style>