my-collect-card.vue 1.7 KB

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