|
|
- <template>
- <view class="works" @click="$emit('click')">
-
- <userHeadItem :item="item"/>
-
- <activityInfo :item="item"/>
-
- <daynamicInfo :item="item"/>
-
- <statisticalDataInfo :item="item"/>
-
- </view>
- </template>
-
- <script>
- import mixinsSex from '@/mixins/sex.js'
- import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
- import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
- import activityInfo from '@/components/list/activity/activityInfo.vue'
- import statisticalDataInfo from '@/components/list/statisticalDataInfo.vue'
- export default {
- mixins: [mixinsSex],
- components : {
- userHeadItem,
- daynamicInfo,
- activityInfo,
- 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;
-
- .bottom {
- display: flex;
- margin-top: 20rpx;
- font-size: 24rpx;
-
- .browse {
- display: flex;
- margin: 0rpx 30rpx;
- margin-left: 10rpx;
- color: rgb(132, 132, 132);
- }
-
- }
- }
- </style>
|