MediaCard.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <figure :class="['card', { row: toggle }]">
  3. <div
  4. class="card-media"
  5. @click="handLeftBtn">
  6. <video
  7. controls
  8. ref="video"
  9. v-if="cardData.type === 5 && toggle"
  10. class="card-media-content">
  11. <source :src="cardData.media_url" />
  12. Your browser does not support the video tag.
  13. </video>
  14. <el-image
  15. :src="
  16. cardData.type === 1 || cardData.type === 8
  17. ? cardData.media_url
  18. : cardData.image
  19. "
  20. class="card-img-1"
  21. fit="contain"
  22. style="width: 100%; height: 100%"
  23. v-else>
  24. </el-image>
  25. <div
  26. class="type-icon"
  27. v-if="cardData.typeName && !toggle">
  28. {{ cardData.typeName.toUpperCase() }}
  29. </div>
  30. </div>
  31. <figcaption class="card-info">
  32. <div class="card-info-1">
  33. <h1>{{ cardData.name }}</h1>
  34. <p
  35. class="card-info-point"
  36. v-html="cardData.description"></p>
  37. <ul class="card-info-label">
  38. <li
  39. v-for="(l, index) of cardData.mapLabel"
  40. :key="index"
  41. @click="emitLabel(l)">
  42. {{ l }}
  43. </li>
  44. <nuxt-link
  45. :to="{ name: 'product-code', params: { code: item } }"
  46. v-for="(item, i) of cardData.sku"
  47. :key="item + i"
  48. target="_blank">
  49. <li>{{ item }}</li>
  50. </nuxt-link>
  51. </ul>
  52. </div>
  53. <div class="card-info-btn">
  54. <el-button
  55. @click="handLeftBtn"
  56. v-if="!toggle"
  57. >View</el-button
  58. >
  59. <el-button @click="handRightBtn">Download</el-button>
  60. </div>
  61. </figcaption>
  62. </figure>
  63. </template>
  64. <script>
  65. export default {
  66. props: {
  67. cardData: {},
  68. toggle: {
  69. type: Boolean,
  70. default: false,
  71. },
  72. },
  73. data() {
  74. return {}
  75. },
  76. watch: {
  77. 'cardData.media_url': function (newVal, oldVal) {
  78. if (newVal !== oldVal && this.$refs.video) {
  79. this.$refs.video.load() // 重新加载视频
  80. }
  81. },
  82. },
  83. methods: {
  84. emitLabel(l) {
  85. this.$emit('labelEvent', l)
  86. },
  87. handLeftBtn() {
  88. this.$emit('leftBtnEvent')
  89. },
  90. handRightBtn() {
  91. this.$emit('rightBtnEvent')
  92. },
  93. },
  94. }
  95. </script>
  96. <style lang="scss" scoped>
  97. .card {
  98. display: flex;
  99. flex-direction: column;
  100. position: relative;
  101. align-items: flex-start;
  102. box-shadow: 0px 0px 10px rgba(137, 137, 137, 0.05);
  103. transition: all 0.2s ease-out 0s;
  104. box-sizing: border-box;
  105. overflow: hidden;
  106. border: 1px solid #eee;
  107. border-radius: 4px;
  108. // &:hover {
  109. // box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  110. // .card-img-1 {
  111. // transform: scale(1.1);
  112. // }
  113. // h1 {
  114. // color: #006dc9;
  115. // }
  116. // }
  117. .card-media {
  118. width: 100%;
  119. height: 200px;
  120. box-sizing: border-box;
  121. overflow: hidden;
  122. .card-media-content {
  123. height: auto;
  124. object-fit: contain;
  125. }
  126. .card-img-1 {
  127. height: auto;
  128. transition: all 0.5s;
  129. cursor: pointer;
  130. }
  131. .type-icon {
  132. position: absolute;
  133. top: 10px;
  134. left: 10px;
  135. padding: 10px;
  136. color: #00213b;
  137. background-color: #fff;
  138. border-radius: 4px;
  139. font-weight: 550;
  140. box-shadow: 0 0 0 2px rgba(#bbb, 0.1);
  141. }
  142. }
  143. .card-info {
  144. flex: 1;
  145. height: 100%;
  146. margin: 0 10px 10px 10px;
  147. color: #4a596c;
  148. display: flex;
  149. flex-direction: column;
  150. .card-info-1 {
  151. flex: 1;
  152. }
  153. h1 {
  154. font-size: 18px;
  155. font-weight: 600;
  156. margin: 10px 0;
  157. overflow: hidden;
  158. text-overflow: ellipsis;
  159. display: -webkit-box;
  160. -webkit-line-clamp: 1;
  161. -webkit-box-orient: vertical;
  162. }
  163. .card-info-point {
  164. margin: 10px 0;
  165. min-height: 40px;
  166. line-height: 20px;
  167. overflow: hidden;
  168. text-overflow: ellipsis;
  169. display: -webkit-box;
  170. -webkit-line-clamp: 2;
  171. -webkit-box-orient: vertical;
  172. word-break: break-word;
  173. }
  174. .card-info-label {
  175. display: flex;
  176. /* 使用flex布局 */
  177. flex-wrap: wrap;
  178. /* 限制最大高度为两行 */
  179. overflow: hidden;
  180. /* 超出部分隐藏 */
  181. position: relative;
  182. li {
  183. border: 1px solid #e7e7e7;
  184. font-size: 16px;
  185. border-radius: 6px;
  186. display: inline-block;
  187. padding: 8px;
  188. margin-right: 10px;
  189. margin-bottom: 10px;
  190. color: #fff;
  191. background-color: var(--deep-blue);
  192. cursor: pointer;
  193. }
  194. }
  195. .card-info-btn {
  196. text-align: center;
  197. button {
  198. font-weight: bold;
  199. width: 120px;
  200. color: var(--deep-blue);
  201. border-color: var(--deep-blue);
  202. }
  203. }
  204. }
  205. }
  206. .row {
  207. border: none;
  208. flex-direction: row;
  209. &:hover {
  210. box-shadow: none;
  211. }
  212. .card-media {
  213. height: inherit;
  214. flex: 1;
  215. display: flex;
  216. align-items: center;
  217. video {
  218. width: 100%;
  219. height: auto;
  220. }
  221. }
  222. .card-info {
  223. flex: 1;
  224. height: inherit;
  225. display: flex;
  226. flex-direction: column;
  227. margin: 0 0 0 20px;
  228. .card-info-1 {
  229. flex: 1;
  230. h1 {
  231. margin: 0;
  232. padding-bottom: 10px;
  233. border-bottom: 1px solid #ddd;
  234. }
  235. .card-info-point {
  236. display: block;
  237. overflow: visible;
  238. text-overflow: unset;
  239. white-space: pre-wrap;
  240. }
  241. }
  242. }
  243. }
  244. </style>