Card.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. <!-- <p
  35. class="card-info-compare"
  36. @click.stop="addCompareList(cardData.id, $event)"
  37. >
  38. Wishlist +
  39. </p> -->
  40. </figure>
  41. </nuxt-link>
  42. </template>
  43. <script>
  44. export default {
  45. props: {
  46. cardData: {},
  47. showPricing: { type: Boolean, default: false },
  48. },
  49. data() {
  50. return {};
  51. },
  52. computed:{
  53. comImg(){
  54. return this.$utils.generateResizedImageUrl(this.cardData.main?.image,300)
  55. },
  56. comBestIcon(){
  57. const bestSeller = this.cardData.collection_detail?.find(item => item.name === "Best Seller");
  58. return bestSeller ? bestSeller.img : '';
  59. }
  60. },
  61. methods: {
  62. addCompareList(id, e) {
  63. this.$axios
  64. .post("home/compare_add", {
  65. id,
  66. compare_keys: "keys",
  67. })
  68. .then((res) => {
  69. if (res.code === 1) {
  70. this.$store.dispatch("getCompareList");
  71. this.$emit("addCompare", e.target);
  72. } else {
  73. this.$message({
  74. message: res.msg,
  75. type: "warning",
  76. });
  77. }
  78. })
  79. .catch(() => {});
  80. },
  81. goProduct(cardData) {
  82. this.$router.push({
  83. name: "product-code",
  84. params: { code: cardData.product_code },
  85. });
  86. // let routeData = this.$router.resolve({
  87. // name: "product-code",
  88. // params:{ code: cardData.product_code },
  89. // });
  90. // window.open(routeData.href, '_blank');
  91. },
  92. },
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. .card {
  97. position: relative;
  98. width: 220px;
  99. // border: 1px solid rgba(0, 0, 0, 0.1);
  100. box-shadow: 0px 0px 10px rgba(137, 137, 137, 0.05);
  101. margin-bottom: 30px;
  102. cursor: pointer;
  103. transition: all 0.2s ease-out 0s;
  104. padding-bottom: 30px;
  105. box-sizing: border-box;
  106. overflow: hidden;
  107. border-radius: 4px;
  108. &:hover {
  109. // transform: translate3d(0px, -2px, 0);
  110. box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  111. .card-img-1 {
  112. transform: scale(1.1);
  113. }
  114. h1 {
  115. color: #006dc9;
  116. }
  117. .card-info-compare {
  118. visibility: visible !important;
  119. }
  120. }
  121. .card-img {
  122. width: 220px;
  123. height: 220px;
  124. padding: 10px;
  125. box-sizing: border-box;
  126. overflow: hidden;
  127. .card-img-1{
  128. transition: all 0.5s ;
  129. }
  130. .best_icon {
  131. position: absolute;
  132. top: 0;
  133. left: 0;
  134. }
  135. .cycle_icon {
  136. position: absolute;
  137. top: 0;
  138. right: 0;
  139. display: flex;
  140. flex-wrap: wrap;
  141. justify-content: flex-end;
  142. width: 132px;
  143. img {
  144. margin-left: 4px;
  145. margin-bottom: 4px;
  146. width: 40px;
  147. height: auto;
  148. vertical-align: middle;
  149. border-radius: 4px;
  150. }
  151. }
  152. }
  153. .card-info {
  154. margin: 0 10px 10px 10px;
  155. border-top: 1px solid rgba(0, 35, 105, 0.1);
  156. h1 {
  157. font-size: 18px;
  158. line-height: 24px;
  159. height: 48px;
  160. font-weight: 600;
  161. margin: 10px 0;
  162. overflow: hidden;
  163. text-overflow: ellipsis;
  164. display: -webkit-box;
  165. -webkit-line-clamp: 2;
  166. -webkit-box-orient: vertical;
  167. }
  168. .card-info-point {
  169. color: #4a596c;
  170. line-height: 16px;
  171. height: 32px;
  172. overflow: hidden;
  173. text-overflow: ellipsis;
  174. display: -webkit-box;
  175. -webkit-line-clamp: 2;
  176. -webkit-box-orient: vertical;
  177. }
  178. .card-info-icon {
  179. margin: 10px 0;
  180. height: 32px;
  181. overflow: hidden;
  182. img {
  183. margin-right: 5px;
  184. // width: 30px;
  185. height: 30px;
  186. }
  187. }
  188. }
  189. .card-info-compare {
  190. text-align: center;
  191. visibility: hidden;
  192. // display: none;
  193. position: absolute;
  194. bottom: 15px;
  195. left: 30%;
  196. }
  197. .show-pricing {
  198. width: 43px;
  199. height: 13px;
  200. font-size: 14px;
  201. font-family: Proxima Nova;
  202. font-weight: bold;
  203. color: #ffffff;
  204. background-color: #000;
  205. padding: 5px 10px;
  206. border-radius: 5px;
  207. position: absolute;
  208. top: 198px;
  209. right: 18px;
  210. }
  211. }
  212. </style>