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

48 lines
927 B

7 months ago
7 months ago
6 months ago
6 months ago
6 months ago
6 months ago
7 months ago
7 months ago
6 months ago
6 months ago
7 months ago
6 months ago
7 months ago
6 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
  1. <template>
  2. <view class="works" @click="$emit('click')">
  3. <userHeadItem :item="item" />
  4. <daynamicInfo :item="item" />
  5. <dynamicToShop
  6. :shop="item.shop"
  7. />
  8. <statisticalDataInfo
  9. :item="item"
  10. type="0"
  11. />
  12. </view>
  13. </template>
  14. <script>
  15. import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
  16. import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
  17. import dynamicToShop from '@/components/list/dynamic/dynamicToShop.vue'
  18. import statisticalDataInfo from '@/components/list/statisticalDataInfo.vue'
  19. export default {
  20. components: {
  21. userHeadItem,
  22. daynamicInfo,
  23. statisticalDataInfo,
  24. dynamicToShop,
  25. },
  26. props: {
  27. item: {},
  28. },
  29. data() {
  30. return {}
  31. },
  32. methods: {},
  33. }
  34. </script>
  35. <style scoped lang="scss">
  36. .works {
  37. margin: 40rpx 20rpx;
  38. background-color: #fff;
  39. padding: 40rpx;
  40. border-radius: 20rpx;
  41. box-shadow: 0 0 6rpx 6rpx #00000011;
  42. }
  43. </style>