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

39 lines
774 B

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