ProductLeft.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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 temp = this.pageData.main
  140. const a = temp.image_color.map((i)=>i.image)
  141. temp.mergeImages = [...temp.images,...a]
  142. return temp
  143. },
  144. comS3Img(){
  145. return this.comInfo.mergeImages.map(url => this.$utils.repaceDomain(url));
  146. }
  147. },
  148. watch:{
  149. currentPre(newVal){
  150. this.$refs.carousel.setActiveItem(newVal);
  151. }
  152. },
  153. mounted(){
  154. if(this.comInfo.video){
  155. this.$refs.video.volume = 0.5;
  156. }
  157. },
  158. methods: {
  159. ...mapMutations({ setSmImgUlIdx: 'product/setSmImgUlIdx' }),
  160. handleSwitch(val) {
  161. this.btnCurrent = val;
  162. },
  163. changeCarousel (val) {
  164. this.setSmImgUlIdx(val);
  165. if (val === this.comInfo.mergeImages?.length) {
  166. this.btnShow = false;
  167. this.comInfo.video && this.$refs.video.play();
  168. } else {
  169. this.btnShow = true;
  170. this.comInfo.video && this.$refs.video.pause();
  171. }
  172. },
  173. selectCurrent3D(val) {
  174. this.current3D = val;
  175. },
  176. goDesign(template_id, goods_id) {
  177. this.$axios
  178. .get("/bxh/design", { params: { template_id, goods_id } })
  179. .then((res) => {
  180. const { href } = this.$router.resolve({
  181. name: "design-id",
  182. params: { id: res.result },
  183. });
  184. window.open(href, "_black");
  185. });
  186. },
  187. getStyle(val) {
  188. const bigImg = this.$refs.big;
  189. bigImg.style.left = -2 * val.left + "px";
  190. bigImg.style.top = -2 * val.top + "px";
  191. this.bigShow = val.bigShow;
  192. },
  193. closeViewer() {
  194. this.showViewer = false;
  195. },
  196. handleViwer(){
  197. this.showViewer = true;
  198. }
  199. }
  200. };
  201. </script>
  202. <style lang="scss" scoped>
  203. .product-left {
  204. padding-right: 20px;
  205. .media {
  206. border: 1px solid rgba(74, 89, 108, 0.2);
  207. position: relative;
  208. width: 578px;
  209. height: 578px;
  210. .banner {
  211. width: 100%;
  212. height: 100%;
  213. background-size: cover;
  214. background-repeat: no-repeat;
  215. background-position: center;
  216. }
  217. video {
  218. object-fit: contain;
  219. }
  220. .design_list_img {
  221. padding: 10px;
  222. // display: flex;
  223. // flex-wrap: wrap;
  224. // justify-content:space-around;
  225. display: grid;
  226. grid-template-columns: repeat(4, 1fr);
  227. gap: 10px;
  228. li {
  229. cursor: pointer;
  230. // width: 192px;
  231. // height:192px;
  232. }
  233. }
  234. .switch-wrap {
  235. position: absolute;
  236. left: 50%;
  237. bottom: 20px;
  238. transform: translate(-50%, 0);
  239. z-index: 2;
  240. font-family: ProximaNova-Regular;
  241. }
  242. .switch-btn {
  243. text-align: center;
  244. &:nth-child(1) {
  245. margin-bottom: 20px;
  246. }
  247. .primary_button {
  248. display: inline-block;
  249. cursor: pointer;
  250. width: 140px;
  251. background: rgba(255, 255, 255);
  252. box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  253. padding: 10px 0;
  254. color: #00213b;
  255. transition: all 0.2s ease-out 0s;
  256. }
  257. .primary_checked {
  258. background: #00213b !important;
  259. color: #fff !important;
  260. }
  261. }
  262. }
  263. .smImgUl {
  264. ul {
  265. margin-top: 10px;
  266. display: inline-grid;
  267. grid-template-columns: repeat(8, 68px);
  268. gap: 5px;
  269. li {
  270. box-sizing: border-box;
  271. border: 1px solid #eee;
  272. cursor: pointer;
  273. width: 100%;
  274. height: 68px;
  275. background-size: cover;
  276. background-repeat: no-repeat;
  277. background-position: center;
  278. position: relative;
  279. }
  280. .slip {
  281. border-color: #4a596c !important;
  282. }
  283. .playMask {
  284. position: absolute;
  285. top: 0;
  286. width: 100%;
  287. height: 100%;
  288. background-color: rgba(0, 0, 0, 0.3);
  289. display: flex;
  290. align-items: center;
  291. justify-content: center;
  292. }
  293. }
  294. }
  295. }
  296. .big {
  297. width: 100%;
  298. height: 100%;
  299. position: absolute;
  300. top: -1px;
  301. left: 100%;
  302. border: 1px solid rgba(74, 89, 108, 0.2);
  303. overflow: hidden;
  304. z-index: 3;
  305. // display: block;
  306. background: white;
  307. // box-sizing: border-box;
  308. img {
  309. width: 200%;
  310. max-width: 200%;
  311. height: 200%;
  312. position: absolute;
  313. left: 0;
  314. top: 0;
  315. object-fit: cover;
  316. }
  317. }
  318. </style>