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

80 lines
1.4 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
3 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
3 months ago
4 months ago
3 months ago
4 months ago
  1. <template>
  2. <view class="works" @click="$emit('click')">
  3. <userHeadItem :item="item"/>
  4. <activityInfo :item="item"/>
  5. <daynamicInfo :item="item"/>
  6. <view class="bottom">
  7. <view class="browse">
  8. {{ item.isBrowse }}浏览
  9. </view>
  10. <view class="browse">
  11. {{ item.isComment }}条评论
  12. </view>
  13. <view class="browse">
  14. 点赞
  15. </view>
  16. <view class="browse">
  17. <view class="icon">
  18. <uv-icon name="attach"></uv-icon>
  19. </view>
  20. 分享
  21. </view>
  22. <callPhone
  23. style="margin-left: auto;"
  24. :phone="item.phone"
  25. :sexName="item.sex"/>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import mixinsSex from '@/mixins/sex.js'
  31. import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
  32. import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
  33. import activityInfo from '@/components/list/activity/activityInfo.vue'
  34. export default {
  35. mixins: [mixinsSex],
  36. components : {
  37. userHeadItem,
  38. daynamicInfo,
  39. activityInfo,
  40. },
  41. props: {
  42. item: {},
  43. },
  44. data() {
  45. return {
  46. }
  47. },
  48. methods: {
  49. },
  50. }
  51. </script>
  52. <style scoped lang="scss">
  53. .works {
  54. margin: 40rpx 20rpx;
  55. background-color: #fff;
  56. padding: 40rpx;
  57. border-radius: 20rpx;
  58. box-shadow: 0 0 6rpx 6rpx #00000011;
  59. .bottom {
  60. display: flex;
  61. margin-top: 20rpx;
  62. font-size: 24rpx;
  63. .browse {
  64. display: flex;
  65. margin: 0rpx 30rpx;
  66. margin-left: 10rpx;
  67. color: rgb(132, 132, 132);
  68. }
  69. }
  70. }
  71. </style>