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

62 lines
1.1 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
5 months ago
6 months ago
6 months ago
5 months ago
6 months ago
6 months ago
5 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="works" @click="$emit('click')">
  3. <userHeadItem :item="item"/>
  4. <activityInfo :item="item"/>
  5. <daynamicInfo :item="item"/>
  6. <statisticalDataInfo :item="item"/>
  7. </view>
  8. </template>
  9. <script>
  10. import mixinsSex from '@/mixins/sex.js'
  11. import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
  12. import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
  13. import activityInfo from '@/components/list/activity/activityInfo.vue'
  14. import statisticalDataInfo from '@/components/list/statisticalDataInfo.vue'
  15. export default {
  16. mixins: [mixinsSex],
  17. components : {
  18. userHeadItem,
  19. daynamicInfo,
  20. activityInfo,
  21. statisticalDataInfo,
  22. },
  23. props: {
  24. item: {},
  25. },
  26. data() {
  27. return {
  28. }
  29. },
  30. methods: {
  31. },
  32. }
  33. </script>
  34. <style scoped lang="scss">
  35. .works {
  36. margin: 40rpx 20rpx;
  37. background-color: #fff;
  38. padding: 40rpx;
  39. border-radius: 20rpx;
  40. box-shadow: 0 0 6rpx 6rpx #00000011;
  41. .bottom {
  42. display: flex;
  43. margin-top: 20rpx;
  44. font-size: 24rpx;
  45. .browse {
  46. display: flex;
  47. margin: 0rpx 30rpx;
  48. margin-left: 10rpx;
  49. color: rgb(132, 132, 132);
  50. }
  51. }
  52. }
  53. </style>