ProductLeft.vue 8.4 KB

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