my-like-news-card.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 = [{ type: "del", value: "取消点赞" }];
  42. return this.manageType ? [] : arr;
  43. },
  44. userInfo() {
  45. return this.$store.state.userInfo;
  46. },
  47. },
  48. };
  49. </script>
  50. <style lang="scss" scoped>
  51. .card {
  52. width: 100%;
  53. height: 100%;
  54. .target {
  55. background: #f4f4f4;
  56. width: calc(100% - 20px);
  57. padding: 10px;
  58. margin: 10px 0;
  59. }
  60. .footer {
  61. margin-top: 10px;
  62. }
  63. }
  64. </style>