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

42 lines
791 B

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