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

63 lines
1.1 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 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="Leavingamessage"
  7. @click.stop="$emit('del')">
  8. <uv-icon size="40rpx" name="trash"></uv-icon>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import mixinsSex from '@/mixins/sex.js'
  15. import userHeadItem from '@/components/list/dynamic/userHeadItem.vue'
  16. import daynamicInfo from '@/components/list/dynamic/daynamicInfo.vue'
  17. export default {
  18. mixins: [mixinsSex],
  19. components : {
  20. userHeadItem,
  21. daynamicInfo,
  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. margin: 0rpx 30rpx;
  47. color: rgb(132, 132, 132);
  48. }
  49. .Leavingamessage {
  50. height: 20rpx;
  51. width: 20rpx;
  52. margin-left: auto;
  53. }
  54. }
  55. }
  56. </style>