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

43 lines
791 B

<template>
<view class="works" @click="$emit('click')">
<userHeadItem :item="item" />
<daynamicInfo :item="item" />
<statisticalDataInfo
:item="item"
type="0"
/>
</view>
</template>
<script>
import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
import statisticalDataInfo from '@/components/list/statisticalDataInfo.vue'
export default {
components: {
userHeadItem,
daynamicInfo,
statisticalDataInfo,
},
props: {
item: {},
},
data() {
return {}
},
methods: {},
}
</script>
<style scoped lang="scss">
.works {
margin: 40rpx 20rpx;
background-color: #fff;
padding: 40rpx;
border-radius: 20rpx;
box-shadow: 0 0 6rpx 6rpx #00000011;
}
</style>