Card.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <nuxt-link :to="{name: 'product-code', params: { code: cardData.product_code}}" class="card">
  3. <figure >
  4. <!-- <nuxt-link :to="{ name: 'product-code', params: { code: cardData.product_code } }"> -->
  5. <div class="card-img">
  6. <el-image
  7. :src="comImg"
  8. class="card-img-1"
  9. fit="cover"
  10. style="width: 100%; height: 100%"
  11. ></el-image>
  12. <img class="best_icon" :src="comBestIcon" v-if="comBestIcon"/>
  13. <div class="cycle_icon">
  14. <img
  15. :src="item.images"
  16. v-for="(item, index) of cardData.cycle_icon"
  17. :key="index"
  18. />
  19. </div>
  20. </div>
  21. <p class="show-pricing" v-if="showPricing">Pricing</p>
  22. <!-- </nuxt-link> -->
  23. <figcaption class="card-info">
  24. <h1>{{ cardData.product_name }}</h1>
  25. <p class="card-info-point">{{ cardData.product_code }}</p>
  26. <div class="card-info-icon">
  27. <img
  28. :src="item.url"
  29. v-for="(item, index) of cardData.icon"
  30. :key="index"
  31. />
  32. </div>
  33. </figcaption>
  34. </figure>
  35. </nuxt-link>
  36. </template>
  37. <script>
  38. export default {
  39. props: {
  40. cardData: {},
  41. showPricing: { type: Boolean, default: false },
  42. },
  43. data() {
  44. return {};
  45. },
  46. computed:{
  47. comImg(){
  48. return this.$utils.generateResizedImageUrl(this.cardData.main?.image,300)
  49. },
  50. comBestIcon(){
  51. const bestSeller = this.cardData.collection_detail?.find(item => item.name === "Best Seller");
  52. return bestSeller ? bestSeller.img : '';
  53. }
  54. },
  55. methods: {
  56. goProduct(cardData) {
  57. this.$router.push({
  58. name: "product-code",
  59. params: { code: cardData.product_code },
  60. });
  61. // let routeData = this.$router.resolve({
  62. // name: "product-code",
  63. // params:{ code: cardData.product_code },
  64. // });
  65. // window.open(routeData.href, '_blank');
  66. },
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. .card {
  72. position: relative;
  73. width: 220px;
  74. // border: 1px solid rgba(0, 0, 0, 0.1);
  75. box-shadow: 0px 0px 10px rgba(137, 137, 137, 0.05);
  76. margin-bottom: 30px;
  77. cursor: pointer;
  78. transition: all 0.2s ease-out 0s;
  79. padding-bottom: 30px;
  80. box-sizing: border-box;
  81. overflow: hidden;
  82. border-radius: 4px;
  83. &:hover {
  84. // transform: translate3d(0px, -2px, 0);
  85. box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  86. .card-img-1 {
  87. transform: scale(1.1);
  88. }
  89. h1 {
  90. color: #006dc9;
  91. }
  92. .card-info-compare {
  93. visibility: visible !important;
  94. }
  95. }
  96. .card-img {
  97. width: 220px;
  98. height: 220px;
  99. padding: 10px;
  100. box-sizing: border-box;
  101. overflow: hidden;
  102. .card-img-1{
  103. transition: all 0.5s ;
  104. }
  105. .best_icon {
  106. position: absolute;
  107. top: 0;
  108. left: 0;
  109. }
  110. .cycle_icon {
  111. position: absolute;
  112. top: 0;
  113. right: 0;
  114. display: flex;
  115. flex-wrap: wrap;
  116. justify-content: flex-end;
  117. width: 132px;
  118. img {
  119. margin-left: 4px;
  120. margin-bottom: 4px;
  121. width: 40px;
  122. height: auto;
  123. vertical-align: middle;
  124. border-radius: 4px;
  125. }
  126. }
  127. }
  128. .card-info {
  129. margin: 0 10px 10px 10px;
  130. border-top: 1px solid rgba(0, 35, 105, 0.1);
  131. h1 {
  132. font-size: 18px;
  133. line-height: 24px;
  134. height: 48px;
  135. font-weight: 600;
  136. margin: 10px 0;
  137. overflow: hidden;
  138. text-overflow: ellipsis;
  139. display: -webkit-box;
  140. -webkit-line-clamp: 2;
  141. -webkit-box-orient: vertical;
  142. }
  143. .card-info-point {
  144. color: #4a596c;
  145. line-height: 16px;
  146. height: 32px;
  147. overflow: hidden;
  148. text-overflow: ellipsis;
  149. display: -webkit-box;
  150. -webkit-line-clamp: 2;
  151. -webkit-box-orient: vertical;
  152. }
  153. .card-info-icon {
  154. margin: 10px 0;
  155. height: 32px;
  156. overflow: hidden;
  157. img {
  158. margin-right: 5px;
  159. // width: 30px;
  160. height: 30px;
  161. }
  162. }
  163. }
  164. .card-info-compare {
  165. text-align: center;
  166. visibility: hidden;
  167. // display: none;
  168. position: absolute;
  169. bottom: 15px;
  170. left: 30%;
  171. }
  172. .show-pricing {
  173. width: 43px;
  174. height: 13px;
  175. font-size: 14px;
  176. font-family: Proxima Nova;
  177. font-weight: bold;
  178. color: #ffffff;
  179. background-color: #000;
  180. padding: 5px 10px;
  181. border-radius: 5px;
  182. position: absolute;
  183. top: 198px;
  184. right: 18px;
  185. }
  186. }
  187. </style>