item.vue 840 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <script lang='ts' setup>
  2. defineProps({
  3. item: Object as any,
  4. isFavorite: {
  5. type: Boolean,
  6. default: false,
  7. },
  8. })
  9. </script>
  10. <template>
  11. <div class="custom-main mx-auto overflow-hidden pos-relative">
  12. <svgo-star class="pos-absolute top-20px right-20px w-20px h-20px" />
  13. <div class="p-20px pb-30px">
  14. <h2 class="!mb-15px w-250px text-24px fw-800 text-#333 line-clamp-2">
  15. {{ item.brandName }}
  16. </h2>
  17. <div class="text-#666 lh-24px ">
  18. {{ item.brandName }}
  19. </div>
  20. </div>
  21. <img
  22. :src="item.thumbnail || item.masterImage"
  23. alt=""
  24. srcset=""
  25. class="w-100% b-rd-tl-10px h-100% b-rd-tr-10px object-cover"
  26. >
  27. </div>
  28. </template>
  29. <style lang="less" scoped>
  30. .custom-main{
  31. width: 386px;
  32. height: 468px;
  33. border-radius: 10px;
  34. // background: #fff;
  35. }
  36. </style>