my-collect-card.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <div class="card">
  3. <CardBox style="padding: 15px 20px" :btnList="btnList" v-on="$listeners">
  4. <div class="video" @click="$emit('handleToDetail')">
  5. <CardCoverDetail
  6. :info="info"
  7. :num_icon="require('@/assets/icon/eye.png')"
  8. />
  9. </div>
  10. <div class="footer">
  11. <CardFooter
  12. :info="info"
  13. :dict="{ is_like: 'is_praise', like_num: 'praise_num' }"
  14. v-on="$listeners"
  15. />
  16. </div>
  17. </CardBox>
  18. </div>
  19. </template>
  20. <script>
  21. import CardBox from "../card-module/card-box.vue";
  22. import CardCoverDetail from "../card-module/card-cover-detail.vue";
  23. import CardFooter from "../card-module/card-footer.vue";
  24. export default {
  25. name: "MyCollectCard",
  26. components: { CardBox, CardCoverDetail, CardFooter },
  27. props: {
  28. info: {
  29. type: Object,
  30. },
  31. manageType: {
  32. type: Boolean,
  33. default: false,
  34. },
  35. },
  36. data() {
  37. return {};
  38. },
  39. computed: {
  40. btnList() {
  41. let arr = [
  42. {
  43. type: "del",
  44. value: this.likeOrCollect == "collect" ? "取消收藏" : "取消点赞",
  45. },
  46. ];
  47. return this.manageType ? [] : arr;
  48. },
  49. userInfo() {
  50. return this.$store.state.userInfo;
  51. },
  52. },
  53. };
  54. </script>
  55. <style lang="scss" scoped>
  56. .card {
  57. width: 100%;
  58. height: 100%;
  59. .target {
  60. background: #f4f4f4;
  61. width: calc(100% - 20px);
  62. padding: 10px;
  63. margin: 10px 0;
  64. }
  65. .footer {
  66. margin-top: 10px;
  67. }
  68. }
  69. </style>