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

67 lines
1.2 KiB

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