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

58 lines
1.0 KiB

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