ProductLeft.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <template>
  2. <div class="product-left">
  3. <div class="media">
  4. <div class="big" v-show="bigShow">
  5. <img :src="$utils.generateResizedImageUrl(comInfo.mergeImages[currentPre],1800)" alt="" ref="big" />
  6. </div>
  7. <el-carousel
  8. :interval="5000"
  9. arrow="always"
  10. height="578px"
  11. indicator-position="none"
  12. :autoplay="false"
  13. ref="carousel"
  14. @change="changeCarousel "
  15. >
  16. <el-carousel-item v-for="item in comInfo.mergeImages" :key="item">
  17. <!-- <div class="banner" :style="{backgroundImage: 'url(' + item + ')'}"></div> -->
  18. <zoom :imgUrl="$utils.generateResizedImageUrl(comInfo.mergeImages[currentPre],1800)" @sendStyle="getStyle" @handleViwer="handleViwer"></zoom>
  19. </el-carousel-item>
  20. <el-carousel-item v-if="comInfo.video">
  21. <video controls width="100%" height="100%" ref="video">
  22. <source
  23. :src="comInfo.video">
  24. Your browser does not support the video tag.
  25. </video>
  26. </el-carousel-item>
  27. </el-carousel>
  28. </div>
  29. <div class="smImgUl">
  30. <ul>
  31. <li
  32. @click="changeCarousel (index)"
  33. :class="currentPre == index ? 'slip' : ''"
  34. v-for="(item, index) of comInfo.mergeImages"
  35. :key="index"
  36. class="banner">
  37. <el-image
  38. :src="$utils.generateResizedImageUrl(item,100)"
  39. class="card-img-1"
  40. fit="cover"
  41. style="width: 100%; height: 100%"
  42. ></el-image>
  43. </li>
  44. <li
  45. @click="changeCarousel (comInfo.mergeImages?.length)"
  46. :class="currentPre == comInfo.mergeImages?.length ? 'slip' : ''"
  47. v-if="comInfo.video">
  48. <video width="100%" height="100%" :src="comInfo.video" />
  49. <div class="playMask">
  50. <img src="@/assets/img/play.png" alt="" />
  51. </div>
  52. </li>
  53. </ul>
  54. </div>
  55. <ElImageViewer
  56. v-if="showViewer" :initial-index="currentPre"
  57. :on-close="closeViewer"
  58. :url-list="comS3Img"
  59. />
  60. </div>
  61. </template>
  62. <script>
  63. import { mapMutations } from 'vuex'
  64. import ElImageViewer from "element-ui/packages/image/src/image-viewer";
  65. import Zoom from "@/components/Zoom";
  66. export default {
  67. components: { Zoom,ElImageViewer },
  68. props: {
  69. pageData: {
  70. type: Object,
  71. default: () => {
  72. return {};
  73. },
  74. },
  75. id: {
  76. type: Number,
  77. default: 0
  78. },
  79. },
  80. data() {
  81. return {
  82. indexBanner: [],
  83. btnObj: ["View larger", "3D Preview"],
  84. current3D: 0, // 3D图序号
  85. btnShow: true, // 所有按钮显示
  86. bigShow: false,
  87. showViewer: false,
  88. };
  89. },
  90. computed: {
  91. currentPre(){
  92. return this.$store.state.product.smImgUlIdx
  93. },
  94. comInfo() {
  95. const { main } = this.pageData;
  96. const images = main.image_color.map(i => i.image);
  97. if (main.image) {
  98. images.unshift(main.image);
  99. }
  100. main.mergeImages = images;
  101. return main;
  102. },
  103. comS3Img(){
  104. return this.comInfo.mergeImages.map(url => this.$utils.repaceDomain(url));
  105. }
  106. },
  107. watch:{
  108. currentPre(newVal){
  109. this.$refs.carousel.setActiveItem(newVal);
  110. }
  111. },
  112. mounted(){
  113. if(this.comInfo.video){
  114. this.$refs.video.volume = 0.5;
  115. }
  116. },
  117. methods: {
  118. ...mapMutations({ setSmImgUlIdx: 'product/setSmImgUlIdx' }),
  119. changeCarousel (val) {
  120. this.setSmImgUlIdx(val);
  121. if (val === this.comInfo.mergeImages?.length) {
  122. this.btnShow = false;
  123. this.comInfo.video && this.$refs.video.play();
  124. } else {
  125. this.btnShow = true;
  126. this.comInfo.video && this.$refs.video.pause();
  127. }
  128. },
  129. selectCurrent3D(val) {
  130. this.current3D = val;
  131. },
  132. getStyle(val) {
  133. const bigImg = this.$refs.big;
  134. bigImg.style.left = -2 * val.left + "px";
  135. bigImg.style.top = -2 * val.top + "px";
  136. this.bigShow = val.bigShow;
  137. },
  138. closeViewer() {
  139. this.showViewer = false;
  140. },
  141. handleViwer(){
  142. this.showViewer = true;
  143. }
  144. }
  145. };
  146. </script>
  147. <style lang="scss" scoped>
  148. .product-left {
  149. padding-right: 20px;
  150. .media {
  151. border: 1px solid rgba(74, 89, 108, 0.2);
  152. position: relative;
  153. width: 578px;
  154. height: 578px;
  155. .banner {
  156. width: 100%;
  157. height: 100%;
  158. background-size: cover;
  159. background-repeat: no-repeat;
  160. background-position: center;
  161. }
  162. video {
  163. object-fit: contain;
  164. }
  165. .design_list_img {
  166. padding: 10px;
  167. // display: flex;
  168. // flex-wrap: wrap;
  169. // justify-content:space-around;
  170. display: grid;
  171. grid-template-columns: repeat(4, 1fr);
  172. gap: 10px;
  173. li {
  174. cursor: pointer;
  175. // width: 192px;
  176. // height:192px;
  177. }
  178. }
  179. .switch-wrap {
  180. position: absolute;
  181. left: 50%;
  182. bottom: 20px;
  183. transform: translate(-50%, 0);
  184. z-index: 2;
  185. font-family: ProximaNova-Regular;
  186. }
  187. .switch-btn {
  188. text-align: center;
  189. &:nth-child(1) {
  190. margin-bottom: 20px;
  191. }
  192. .primary_button {
  193. display: inline-block;
  194. cursor: pointer;
  195. width: 140px;
  196. background: rgba(255, 255, 255);
  197. box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  198. padding: 10px 0;
  199. color: #00213b;
  200. transition: all 0.2s ease-out 0s;
  201. }
  202. .primary_checked {
  203. background: #00213b !important;
  204. color: #fff !important;
  205. }
  206. }
  207. }
  208. .smImgUl {
  209. ul {
  210. margin-top: 10px;
  211. display: inline-grid;
  212. grid-template-columns: repeat(8, 68px);
  213. gap: 5px;
  214. li {
  215. box-sizing: border-box;
  216. border: 1px solid #eee;
  217. cursor: pointer;
  218. width: 100%;
  219. height: 68px;
  220. background-size: cover;
  221. background-repeat: no-repeat;
  222. background-position: center;
  223. position: relative;
  224. }
  225. .slip {
  226. border-color: #4a596c !important;
  227. }
  228. .playMask {
  229. position: absolute;
  230. top: 0;
  231. width: 100%;
  232. height: 100%;
  233. background-color: rgba(0, 0, 0, 0.3);
  234. display: flex;
  235. align-items: center;
  236. justify-content: center;
  237. }
  238. }
  239. }
  240. }
  241. .big {
  242. width: 100%;
  243. height: 100%;
  244. position: absolute;
  245. top: -1px;
  246. left: 100%;
  247. border: 1px solid rgba(74, 89, 108, 0.2);
  248. overflow: hidden;
  249. z-index: 3;
  250. // display: block;
  251. background: white;
  252. // box-sizing: border-box;
  253. img {
  254. width: 200%;
  255. max-width: 200%;
  256. height: 200%;
  257. position: absolute;
  258. left: 0;
  259. top: 0;
  260. object-fit: cover;
  261. }
  262. }
  263. </style>