|
@@ -0,0 +1,883 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page" :class="{ page_red: theme === 1 }">
|
|
3
|
+ <scroll-view
|
|
4
|
+ class="page__scroll"
|
|
5
|
+ :class="{ 'page__scroll--iphoneX': iphoneX }"
|
|
6
|
+ :scroll-y="true"
|
|
7
|
+ :refresher-enabled="true"
|
|
8
|
+ :refresher-triggered="triggered"
|
|
9
|
+ :scroll-into-view="scroll"
|
|
10
|
+ >
|
|
11
|
+ <swiper
|
|
12
|
+ class="swiper"
|
|
13
|
+ :indicator-dots="true"
|
|
14
|
+ @change="swiperChange($event)"
|
|
15
|
+ >
|
|
16
|
+ <swiper-item
|
|
17
|
+ class="swiper__item"
|
|
18
|
+ v-for="(item, index) in goods.pictureUrls"
|
|
19
|
+ :key="index"
|
|
20
|
+ >
|
|
21
|
+ <my-image class="swiper__img" :src="item"></my-image>
|
|
22
|
+ </swiper-item>
|
|
23
|
+ </swiper>
|
|
24
|
+ <div class="info">
|
|
25
|
+ <div class="info__top">
|
|
26
|
+ <div class="price">
|
|
27
|
+ <div class="price__present">
|
|
28
|
+ <span class="price__rmb">¥</span>
|
|
29
|
+ <span class="price__big">{{
|
|
30
|
+ goods.minPrice / 100 || "0.00"
|
|
31
|
+ }}</span>
|
|
32
|
+ </div>
|
|
33
|
+ <div
|
|
34
|
+ class="price__original"
|
|
35
|
+ v-if="goods.tagPrice !== '0.00'"
|
|
36
|
+ >
|
|
37
|
+ {{ "¥" + (goods.tagPrice / 100 || "0.00") }}
|
|
38
|
+ </div>
|
|
39
|
+ </div>
|
|
40
|
+ <div class="info__num">
|
|
41
|
+ {{ "销量" + (goods.weSold || "0") }}
|
|
42
|
+ </div>
|
|
43
|
+ </div>
|
|
44
|
+ <div class="info__bottom">
|
|
45
|
+ <div class="info__title">
|
|
46
|
+ {{ goods.name || "" }}
|
|
47
|
+ </div>
|
|
48
|
+ <!-- <div class="share" @click="oprenShare">
|
|
49
|
+ <img
|
|
50
|
+ class="share__img"
|
|
51
|
+ src="/static/goods/share.png"
|
|
52
|
+ alt=""
|
|
53
|
+ />
|
|
54
|
+ <div class="share__text">分享</div>
|
|
55
|
+ </div> -->
|
|
56
|
+ </div>
|
|
57
|
+ </div>
|
|
58
|
+
|
|
59
|
+ <div class="describe" v-if="goods.itemInfo.desc">
|
|
60
|
+ <!-- <div class="describe__title">商品描述</div> -->
|
|
61
|
+ <ul class="describe__list">
|
|
62
|
+ <li class="describe__item">{{ goods.itemInfo.desc }}</li>
|
|
63
|
+ </ul>
|
|
64
|
+ </div>
|
|
65
|
+ <ul id="a" class="nav">
|
|
66
|
+ <li
|
|
67
|
+ class="nav__item"
|
|
68
|
+ :class="{ 'nav__item--active': nav === 'a' }"
|
|
69
|
+ @click="setNav('a')"
|
|
70
|
+ >
|
|
71
|
+ 图文详情
|
|
72
|
+ </li>
|
|
73
|
+ </ul>
|
|
74
|
+
|
|
75
|
+ <div class="images">
|
|
76
|
+ <my-image
|
|
77
|
+ class="images__item"
|
|
78
|
+ mode="widthFix"
|
|
79
|
+ :src="item"
|
|
80
|
+ v-for="(item, index) in goods.pictureUrls"
|
|
81
|
+ :key="index"
|
|
82
|
+ ></my-image>
|
|
83
|
+ </div>
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+ </scroll-view>
|
|
87
|
+
|
|
88
|
+ </div>
|
|
89
|
+</template>
|
|
90
|
+
|
|
91
|
+<script>
|
|
92
|
+import MyImage from "../../components/image/index";
|
|
93
|
+import MyShare from "../../components/share/index";
|
|
94
|
+let app = getApp();
|
|
95
|
+
|
|
96
|
+export default {
|
|
97
|
+ name: "",
|
|
98
|
+ components: { MyImage, MyShare },
|
|
99
|
+ // 数据
|
|
100
|
+ data() {
|
|
101
|
+ return {
|
|
102
|
+ goodsId: "",
|
|
103
|
+ goods: "",
|
|
104
|
+ nav: "a",
|
|
105
|
+ scroll: "",
|
|
106
|
+ cartNum: 0,
|
|
107
|
+ spec: "",
|
|
108
|
+ canvasShow: false,
|
|
109
|
+ canvasHandleStatus: false,
|
|
110
|
+ shoprRecommendList: [],
|
|
111
|
+ couponText: "",
|
|
112
|
+ canvasImgPath: "",
|
|
113
|
+
|
|
114
|
+ deliveryConfig: null,
|
|
115
|
+ layout: null,
|
|
116
|
+
|
|
117
|
+ triggered: false,
|
|
118
|
+ };
|
|
119
|
+ },
|
|
120
|
+ onLoad(opts){
|
|
121
|
+ this.goodsId = opts.id;
|
|
122
|
+ this.getGoodsDetail();
|
|
123
|
+ },
|
|
124
|
+ async onShow() {
|
|
125
|
+ },
|
|
126
|
+
|
|
127
|
+ // 函数
|
|
128
|
+ methods: {
|
|
129
|
+
|
|
130
|
+ // 获取商品详情
|
|
131
|
+ getGoodsDetail() {
|
|
132
|
+ const self = this;
|
|
133
|
+
|
|
134
|
+ uni.showLoading({
|
|
135
|
+ title: "加载中...",
|
|
136
|
+ });
|
|
137
|
+ self.api
|
|
138
|
+ .get(
|
|
139
|
+ "/Yx/GetProduct",
|
|
140
|
+ {
|
|
141
|
+ id: self.goodsId,
|
|
142
|
+ },
|
|
143
|
+ {
|
|
144
|
+ pass: true,
|
|
145
|
+ }
|
|
146
|
+ )
|
|
147
|
+ .then((res) => {
|
|
148
|
+ uni.hideLoading();
|
|
149
|
+ self.triggered = false;
|
|
150
|
+ if (res.data) {
|
|
151
|
+ let data = JSON.parse(res.data);
|
|
152
|
+ self.goods = data;
|
|
153
|
+ } else {
|
|
154
|
+ self.fn
|
|
155
|
+ .showModal({
|
|
156
|
+ title: "商品已下架",
|
|
157
|
+ showCancel: false,
|
|
158
|
+ })
|
|
159
|
+ .then((res) => {
|
|
160
|
+ if (res.confirm) {
|
|
161
|
+ self.router.push({
|
|
162
|
+ path:'/pages/index/index',
|
|
163
|
+ isTabBer:true
|
|
164
|
+ });
|
|
165
|
+ }
|
|
166
|
+ });
|
|
167
|
+ }
|
|
168
|
+ });
|
|
169
|
+ },
|
|
170
|
+
|
|
171
|
+ // 判断规格,只有一个默认选择
|
|
172
|
+ ifSpec() {
|
|
173
|
+ if (this.goods.skuDetail.skus.length === 1) {
|
|
174
|
+ this.spec = this.goods.skuDetail.skus[0];
|
|
175
|
+ this.goods.skuDetail.props[0].list[0].active = true;
|
|
176
|
+ }
|
|
177
|
+ },
|
|
178
|
+
|
|
179
|
+ // 修改导航
|
|
180
|
+ setNav(val) {
|
|
181
|
+ const self = this;
|
|
182
|
+
|
|
183
|
+ self.nav = val;
|
|
184
|
+ self.scroll = val;
|
|
185
|
+ },
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+ viewImg() {
|
|
190
|
+ let self = this;
|
|
191
|
+ //查看图片
|
|
192
|
+ console.log(111, self.canvasImgPath);
|
|
193
|
+ uni.previewImage({
|
|
194
|
+ urls: self.canvasImgPath,
|
|
195
|
+ longPressActions: true,
|
|
196
|
+ });
|
|
197
|
+ },
|
|
198
|
+
|
|
199
|
+ // swiper切换
|
|
200
|
+ swiperChange(e) {
|
|
201
|
+ let videoContext = uni.createVideoContext("goodVideo");
|
|
202
|
+ let index = e.detail.current;
|
|
203
|
+ if (videoContext) {
|
|
204
|
+ if (index === 0) {
|
|
205
|
+ videoContext.play();
|
|
206
|
+ } else {
|
|
207
|
+ videoContext.pause();
|
|
208
|
+ }
|
|
209
|
+ }
|
|
210
|
+ },
|
|
211
|
+
|
|
212
|
+ },
|
|
213
|
+
|
|
214
|
+ // 数据计算
|
|
215
|
+ computed: {
|
|
216
|
+ activeShop() {
|
|
217
|
+ return this.$store.state.common.activeShop;
|
|
218
|
+ },
|
|
219
|
+ // 判断主题 1:红色 2:绿色
|
|
220
|
+ theme() {
|
|
221
|
+ console.log(this.$store.state.common.theme, 111);
|
|
222
|
+ return this.$store.state.common.theme;
|
|
223
|
+ },
|
|
224
|
+ user() {
|
|
225
|
+ return this.$store.state.user;
|
|
226
|
+ },
|
|
227
|
+ distribution() {
|
|
228
|
+ return this.$store.state.common.distribution;
|
|
229
|
+ },
|
|
230
|
+ sepcTextLsit() {
|
|
231
|
+ const self = this;
|
|
232
|
+
|
|
233
|
+ let list = [];
|
|
234
|
+
|
|
235
|
+ if (self.spec) {
|
|
236
|
+ list = [];
|
|
237
|
+ list.push(self.spec.properties);
|
|
238
|
+ }
|
|
239
|
+
|
|
240
|
+ return list;
|
|
241
|
+ },
|
|
242
|
+ },
|
|
243
|
+
|
|
244
|
+ // 数据监听
|
|
245
|
+ watch: {},
|
|
246
|
+};
|
|
247
|
+</script>
|
|
248
|
+
|
|
249
|
+<style>
|
|
250
|
+page {
|
|
251
|
+ height: 100%;
|
|
252
|
+}
|
|
253
|
+</style>
|
|
254
|
+
|
|
255
|
+<style lang="scss" scoped>
|
|
256
|
+.page {
|
|
257
|
+ position: relative;
|
|
258
|
+ height: 100%;
|
|
259
|
+
|
|
260
|
+ &__scroll {
|
|
261
|
+ position: absolute;
|
|
262
|
+ top: 0;
|
|
263
|
+ bottom: px(0);
|
|
264
|
+ left: 0;
|
|
265
|
+ right: 0;
|
|
266
|
+ z-index: 1;
|
|
267
|
+
|
|
268
|
+ &--iphoneX {
|
|
269
|
+ bottom: px(30);
|
|
270
|
+ }
|
|
271
|
+ }
|
|
272
|
+}
|
|
273
|
+
|
|
274
|
+.swiper {
|
|
275
|
+ width: 100%;
|
|
276
|
+ height: px(1080);
|
|
277
|
+
|
|
278
|
+ &__video {
|
|
279
|
+ width: 100%;
|
|
280
|
+ height: 100%;
|
|
281
|
+ }
|
|
282
|
+
|
|
283
|
+ &__img /deep/ img {
|
|
284
|
+ width: px(1080);
|
|
285
|
+ height: px(1080);
|
|
286
|
+ }
|
|
287
|
+}
|
|
288
|
+
|
|
289
|
+.info {
|
|
290
|
+ padding: px(40) 0 px(35) px(60);
|
|
291
|
+ background-color: #fff;
|
|
292
|
+
|
|
293
|
+ &__top {
|
|
294
|
+ display: flex;
|
|
295
|
+ justify-content: space-between;
|
|
296
|
+ align-items: baseline;
|
|
297
|
+ }
|
|
298
|
+
|
|
299
|
+ &__num {
|
|
300
|
+ display: flex;
|
|
301
|
+ justify-content: center;
|
|
302
|
+ align-items: center;
|
|
303
|
+ width: px(165);
|
|
304
|
+ height: px(56);
|
|
305
|
+ font-size: px(30);
|
|
306
|
+ color: #27a34f;
|
|
307
|
+ border-radius: px(28) 0 0 px(28);
|
|
308
|
+ background-color: #f8f8f8;
|
|
309
|
+ }
|
|
310
|
+
|
|
311
|
+ &__share {
|
|
312
|
+ margin-top: px(40);
|
|
313
|
+ font-size: px(44);
|
|
314
|
+ color: #999;
|
|
315
|
+ font-weight: 600;
|
|
316
|
+ }
|
|
317
|
+
|
|
318
|
+ &__bottom {
|
|
319
|
+ display: flex;
|
|
320
|
+ justify-content: space-between;
|
|
321
|
+ align-items: center;
|
|
322
|
+ margin-top: px(50);
|
|
323
|
+ }
|
|
324
|
+
|
|
325
|
+ &__title {
|
|
326
|
+ @include omits(2);
|
|
327
|
+ flex: 1;
|
|
328
|
+ padding-right: px(35);
|
|
329
|
+ font-size: px(44);
|
|
330
|
+ color: #333;
|
|
331
|
+ }
|
|
332
|
+}
|
|
333
|
+
|
|
334
|
+.price {
|
|
335
|
+ display: flex;
|
|
336
|
+ align-items: baseline;
|
|
337
|
+
|
|
338
|
+ &__present {
|
|
339
|
+ color: #27a34f;
|
|
340
|
+ font-weight: 600;
|
|
341
|
+ }
|
|
342
|
+
|
|
343
|
+ &__rmb {
|
|
344
|
+ font-size: px(38);
|
|
345
|
+ }
|
|
346
|
+
|
|
347
|
+ &__big {
|
|
348
|
+ margin-left: px(10);
|
|
349
|
+ font-size: px(68);
|
|
350
|
+ }
|
|
351
|
+
|
|
352
|
+ &__original {
|
|
353
|
+ position: relative;
|
|
354
|
+ margin-left: px(30);
|
|
355
|
+ font-size: px(32);
|
|
356
|
+ color: #999;
|
|
357
|
+
|
|
358
|
+ &:after {
|
|
359
|
+ content: "";
|
|
360
|
+ position: absolute;
|
|
361
|
+ top: 50%;
|
|
362
|
+ left: 0;
|
|
363
|
+ z-index: 1;
|
|
364
|
+ width: 100%;
|
|
365
|
+ height: px(1);
|
|
366
|
+ transform: translateY(-100%);
|
|
367
|
+ background-color: #999;
|
|
368
|
+ }
|
|
369
|
+ }
|
|
370
|
+}
|
|
371
|
+
|
|
372
|
+.share {
|
|
373
|
+ display: flex;
|
|
374
|
+ flex-direction: column;
|
|
375
|
+ justify-content: center;
|
|
376
|
+ align-items: center;
|
|
377
|
+ padding: 0 px(60) 0 px(30);
|
|
378
|
+ border-left: dashed px(3) #e7e7e7;
|
|
379
|
+
|
|
380
|
+ &__icon {
|
|
381
|
+ font-size: px(60);
|
|
382
|
+ color: #262626;
|
|
383
|
+ }
|
|
384
|
+ &__img {
|
|
385
|
+ width: px(50);
|
|
386
|
+ height: px(50);
|
|
387
|
+ object-fit: contain;
|
|
388
|
+ }
|
|
389
|
+
|
|
390
|
+ &__text {
|
|
391
|
+ margin-top: px(10);
|
|
392
|
+ font-size: px(30);
|
|
393
|
+ color: #999;
|
|
394
|
+ }
|
|
395
|
+}
|
|
396
|
+
|
|
397
|
+.specification {
|
|
398
|
+ display: flex;
|
|
399
|
+ justify-content: space-between;
|
|
400
|
+ align-items: center;
|
|
401
|
+ height: px(130);
|
|
402
|
+ margin-top: px(30);
|
|
403
|
+ padding: 0 px(60);
|
|
404
|
+ background-color: #fff;
|
|
405
|
+
|
|
406
|
+ &__left {
|
|
407
|
+ display: flex;
|
|
408
|
+ align-items: center;
|
|
409
|
+ }
|
|
410
|
+
|
|
411
|
+ &__img {
|
|
412
|
+ width: px(34);
|
|
413
|
+ height: px(34);
|
|
414
|
+ margin-right: px(15);
|
|
415
|
+ }
|
|
416
|
+
|
|
417
|
+ &__text {
|
|
418
|
+ margin-right: px(30);
|
|
419
|
+ font-size: px(42);
|
|
420
|
+ color: #333;
|
|
421
|
+ }
|
|
422
|
+
|
|
423
|
+ &__arrows {
|
|
424
|
+ font-size: px(40);
|
|
425
|
+ color: #999;
|
|
426
|
+ }
|
|
427
|
+}
|
|
428
|
+
|
|
429
|
+.describe {
|
|
430
|
+ // margin-top: px(30);
|
|
431
|
+ padding: px(0) px(60) px(40);
|
|
432
|
+ background-color: #fff;
|
|
433
|
+
|
|
434
|
+ &__title {
|
|
435
|
+ font-size: px(42);
|
|
436
|
+ color: #333;
|
|
437
|
+ font-weight: 700;
|
|
438
|
+ }
|
|
439
|
+
|
|
440
|
+ &__list {
|
|
441
|
+ // margin-top: px(50);
|
|
442
|
+ }
|
|
443
|
+
|
|
444
|
+ &__item {
|
|
445
|
+ // margin-top: px(15);
|
|
446
|
+ font-size: px(36);
|
|
447
|
+ color: #666;
|
|
448
|
+ }
|
|
449
|
+}
|
|
450
|
+
|
|
451
|
+.nav {
|
|
452
|
+ display: flex;
|
|
453
|
+ justify-content: space-around;
|
|
454
|
+ align-items: center;
|
|
455
|
+ height: px(130);
|
|
456
|
+ margin-top: px(30);
|
|
457
|
+ background-color: #fff;
|
|
458
|
+
|
|
459
|
+ &__item {
|
|
460
|
+ font-size: px(44);
|
|
461
|
+ color: #333;
|
|
462
|
+ font-weight: 700;
|
|
463
|
+
|
|
464
|
+ &:after {
|
|
465
|
+ content: "";
|
|
466
|
+ display: block;
|
|
467
|
+ height: px(8);
|
|
468
|
+ margin-top: px(20);
|
|
469
|
+ background-color: #fff;
|
|
470
|
+ }
|
|
471
|
+
|
|
472
|
+ &--active {
|
|
473
|
+ &:after {
|
|
474
|
+ background-color: #333;
|
|
475
|
+ }
|
|
476
|
+ }
|
|
477
|
+ }
|
|
478
|
+}
|
|
479
|
+
|
|
480
|
+.images {
|
|
481
|
+ &__item /deep/ img {
|
|
482
|
+ width: 100%;
|
|
483
|
+ }
|
|
484
|
+}
|
|
485
|
+
|
|
486
|
+.recommend {
|
|
487
|
+ margin-top: px(30);
|
|
488
|
+ background-color: #fff;
|
|
489
|
+
|
|
490
|
+ &__title {
|
|
491
|
+ display: flex;
|
|
492
|
+ align-items: center;
|
|
493
|
+ padding: px(50) px(60);
|
|
494
|
+ font-size: px(44);
|
|
495
|
+ color: #333;
|
|
496
|
+ font-weight: 700;
|
|
497
|
+ }
|
|
498
|
+}
|
|
499
|
+
|
|
500
|
+.goods {
|
|
501
|
+ display: flex;
|
|
502
|
+ flex-wrap: wrap;
|
|
503
|
+ justify-content: space-between;
|
|
504
|
+ padding: 0 px(60);
|
|
505
|
+ background-color: #fff;
|
|
506
|
+
|
|
507
|
+ &__item {
|
|
508
|
+ width: px(310);
|
|
509
|
+ padding-bottom: px(100);
|
|
510
|
+ overflow: hidden;
|
|
511
|
+ border-radius: px(20);
|
|
512
|
+ }
|
|
513
|
+
|
|
514
|
+ &__img /deep/ img {
|
|
515
|
+ width: px(310);
|
|
516
|
+ height: px(305);
|
|
517
|
+ }
|
|
518
|
+
|
|
519
|
+ &__title {
|
|
520
|
+ @include omits(2);
|
|
521
|
+ height: px(100);
|
|
522
|
+ margin-top: px(30);
|
|
523
|
+ font-size: px(36);
|
|
524
|
+ color: #333;
|
|
525
|
+ }
|
|
526
|
+
|
|
527
|
+ &__price {
|
|
528
|
+ display: flex;
|
|
529
|
+ align-items: flex-end;
|
|
530
|
+ margin-top: px(30);
|
|
531
|
+ }
|
|
532
|
+
|
|
533
|
+ &__present {
|
|
534
|
+ font-size: px(38);
|
|
535
|
+ color: #000;
|
|
536
|
+ }
|
|
537
|
+}
|
|
538
|
+
|
|
539
|
+.live {
|
|
540
|
+ position: fixed;
|
|
541
|
+ bottom: px(420);
|
|
542
|
+ right: px(30);
|
|
543
|
+ z-index: 995;
|
|
544
|
+ width: px(150);
|
|
545
|
+ height: px(150);
|
|
546
|
+}
|
|
547
|
+
|
|
548
|
+.back {
|
|
549
|
+ position: fixed;
|
|
550
|
+ bottom: px(290);
|
|
551
|
+ right: 0;
|
|
552
|
+ z-index: 995;
|
|
553
|
+ display: flex;
|
|
554
|
+ justify-content: center;
|
|
555
|
+ align-items: center;
|
|
556
|
+ width: px(225);
|
|
557
|
+ height: px(90);
|
|
558
|
+ font-size: px(36);
|
|
559
|
+ color: #fff;
|
|
560
|
+ border-radius: px(45) 0 0 px(45);
|
|
561
|
+ background-color: #505050;
|
|
562
|
+}
|
|
563
|
+
|
|
564
|
+.navigation {
|
|
565
|
+ position: absolute;
|
|
566
|
+ bottom: 0;
|
|
567
|
+ left: 0;
|
|
568
|
+ z-index: 995;
|
|
569
|
+ display: flex;
|
|
570
|
+ justify-content: space-between;
|
|
571
|
+ align-items: center;
|
|
572
|
+ width: 100%;
|
|
573
|
+ height: px(185);
|
|
574
|
+ padding: 0 px(40);
|
|
575
|
+ background-color: #fff;
|
|
576
|
+
|
|
577
|
+ &--iphoneX {
|
|
578
|
+ height: px(215);
|
|
579
|
+ padding-bottom: px(30);
|
|
580
|
+ }
|
|
581
|
+
|
|
582
|
+ &__list {
|
|
583
|
+ display: flex;
|
|
584
|
+ justify-content: space-between;
|
|
585
|
+ align-items: center;
|
|
586
|
+ width: px(400);
|
|
587
|
+ }
|
|
588
|
+
|
|
589
|
+ &__item {
|
|
590
|
+ position: relative;
|
|
591
|
+ display: flex;
|
|
592
|
+ flex-direction: column;
|
|
593
|
+ justify-content: center;
|
|
594
|
+ align-items: center;
|
|
595
|
+ }
|
|
596
|
+
|
|
597
|
+ &__icon {
|
|
598
|
+ font-size: px(54);
|
|
599
|
+ color: #666;
|
|
600
|
+ }
|
|
601
|
+
|
|
602
|
+ &__text {
|
|
603
|
+ margin-top: px(20);
|
|
604
|
+ font-size: px(32);
|
|
605
|
+ color: #666;
|
|
606
|
+ }
|
|
607
|
+
|
|
608
|
+ &__num {
|
|
609
|
+ position: absolute;
|
|
610
|
+ top: 0;
|
|
611
|
+ right: 0;
|
|
612
|
+ z-index: 0;
|
|
613
|
+ display: flex;
|
|
614
|
+ justify-content: center;
|
|
615
|
+ align-items: center;
|
|
616
|
+ min-width: px(40);
|
|
617
|
+ height: px(40);
|
|
618
|
+ padding: 0 px(15);
|
|
619
|
+ transform: translate(30%, -30%);
|
|
620
|
+ font-size: px(26);
|
|
621
|
+ color: #fff;
|
|
622
|
+ border-radius: px(20);
|
|
623
|
+ background-color: #ff4421;
|
|
624
|
+ }
|
|
625
|
+
|
|
626
|
+ &__right {
|
|
627
|
+ display: flex;
|
|
628
|
+ justify-content: space-between;
|
|
629
|
+ align-items: center;
|
|
630
|
+ flex: 1;
|
|
631
|
+ margin-left: px(40);
|
|
632
|
+ }
|
|
633
|
+
|
|
634
|
+ &__btn {
|
|
635
|
+ display: flex;
|
|
636
|
+ justify-content: center;
|
|
637
|
+ align-items: center;
|
|
638
|
+ width: px(270);
|
|
639
|
+ height: px(110);
|
|
640
|
+ font-size: px(40);
|
|
641
|
+ color: #fff;
|
|
642
|
+ border-radius: px(55);
|
|
643
|
+ background-color: #27a34f;
|
|
644
|
+
|
|
645
|
+ &--cart {
|
|
646
|
+ color: #262626;
|
|
647
|
+ background-color: #e5e5e5;
|
|
648
|
+ }
|
|
649
|
+ }
|
|
650
|
+
|
|
651
|
+ &__null {
|
|
652
|
+ display: flex;
|
|
653
|
+ justify-content: center;
|
|
654
|
+ align-items: center;
|
|
655
|
+ width: 100%;
|
|
656
|
+ height: px(110);
|
|
657
|
+ font-size: px(40);
|
|
658
|
+ color: #fff;
|
|
659
|
+ border-radius: px(55);
|
|
660
|
+ background-color: #e5e5e5;
|
|
661
|
+ }
|
|
662
|
+}
|
|
663
|
+
|
|
664
|
+.canvas {
|
|
665
|
+ position: fixed;
|
|
666
|
+ top: 0;
|
|
667
|
+ left: 0;
|
|
668
|
+ z-index: 996;
|
|
669
|
+ width: 100%;
|
|
670
|
+ height: 100%;
|
|
671
|
+ background-color: rgba(0, 0, 0, 0.4);
|
|
672
|
+
|
|
673
|
+ &__content {
|
|
674
|
+ position: relative;
|
|
675
|
+ width: 100%;
|
|
676
|
+ height: 100%;
|
|
677
|
+ padding: px(200) px(80) 0;
|
|
678
|
+ z-index: 10;
|
|
679
|
+ }
|
|
680
|
+
|
|
681
|
+ &__close {
|
|
682
|
+ position: absolute;
|
|
683
|
+ top: px(50);
|
|
684
|
+ right: px(120);
|
|
685
|
+ z-index: 1;
|
|
686
|
+ display: flex;
|
|
687
|
+ justify-content: center;
|
|
688
|
+ align-items: center;
|
|
689
|
+ width: px(100);
|
|
690
|
+ height: px(100);
|
|
691
|
+ border-radius: 50%;
|
|
692
|
+ border: solid px(3) #fff;
|
|
693
|
+
|
|
694
|
+ &:after {
|
|
695
|
+ content: "";
|
|
696
|
+ position: absolute;
|
|
697
|
+ top: px(100);
|
|
698
|
+ left: 50%;
|
|
699
|
+ z-index: 1;
|
|
700
|
+ display: block;
|
|
701
|
+ width: px(3);
|
|
702
|
+ height: px(50);
|
|
703
|
+ transform: translateX(-50%);
|
|
704
|
+ background-color: #fff;
|
|
705
|
+ }
|
|
706
|
+ }
|
|
707
|
+
|
|
708
|
+ &__img {
|
|
709
|
+ width: px(60);
|
|
710
|
+ height: px(60);
|
|
711
|
+ }
|
|
712
|
+
|
|
713
|
+ &__box {
|
|
714
|
+ width: px(920);
|
|
715
|
+ height: px(1483);
|
|
716
|
+ background-color: #fff;
|
|
717
|
+ }
|
|
718
|
+}
|
|
719
|
+
|
|
720
|
+.shop-recommend {
|
|
721
|
+ margin-top: px(30);
|
|
722
|
+ background-color: #fff;
|
|
723
|
+
|
|
724
|
+ &__title {
|
|
725
|
+ padding: px(50) px(55) 0;
|
|
726
|
+ font-size: px(44);
|
|
727
|
+ color: #333;
|
|
728
|
+ font-weight: 700;
|
|
729
|
+ }
|
|
730
|
+
|
|
731
|
+ &__swiper {
|
|
732
|
+ height: px(540);
|
|
733
|
+ padding: 0 px(55);
|
|
734
|
+ margin-top: px(50);
|
|
735
|
+ }
|
|
736
|
+}
|
|
737
|
+
|
|
738
|
+.shop-goods {
|
|
739
|
+ display: flex;
|
|
740
|
+ height: 100%;
|
|
741
|
+
|
|
742
|
+ &__item {
|
|
743
|
+ width: px(305);
|
|
744
|
+ height: 100%;
|
|
745
|
+ margin-left: px(27.5);
|
|
746
|
+
|
|
747
|
+ &:first-child {
|
|
748
|
+ margin-left: 0;
|
|
749
|
+ }
|
|
750
|
+ }
|
|
751
|
+
|
|
752
|
+ &__img /deep/ img {
|
|
753
|
+ width: px(305);
|
|
754
|
+ height: px(305);
|
|
755
|
+ border-radius: px(10);
|
|
756
|
+ }
|
|
757
|
+
|
|
758
|
+ &__title {
|
|
759
|
+ @include omits(2);
|
|
760
|
+ height: px(100);
|
|
761
|
+ margin-top: px(20);
|
|
762
|
+ font-size: px(36);
|
|
763
|
+ color: #333;
|
|
764
|
+ font-weight: 700;
|
|
765
|
+ }
|
|
766
|
+
|
|
767
|
+ &__price {
|
|
768
|
+ margin-top: px(25);
|
|
769
|
+ font-size: px(36);
|
|
770
|
+ font-weight: 600;
|
|
771
|
+ }
|
|
772
|
+}
|
|
773
|
+
|
|
774
|
+.coupon {
|
|
775
|
+ height: px(240);
|
|
776
|
+ padding: 0 px(55);
|
|
777
|
+ margin-top: px(30);
|
|
778
|
+ background-color: #fff;
|
|
779
|
+
|
|
780
|
+ &__title {
|
|
781
|
+ display: flex;
|
|
782
|
+ align-items: center;
|
|
783
|
+ height: px(130);
|
|
784
|
+ font-size: px(42);
|
|
785
|
+ color: #333;
|
|
786
|
+ font-weight: 700;
|
|
787
|
+ border-bottom: solid px(3) #f8f8f8;
|
|
788
|
+ }
|
|
789
|
+
|
|
790
|
+ &__content {
|
|
791
|
+ display: flex;
|
|
792
|
+ justify-content: space-between;
|
|
793
|
+ align-items: center;
|
|
794
|
+ padding-top: px(30);
|
|
795
|
+ }
|
|
796
|
+
|
|
797
|
+ &__left {
|
|
798
|
+ display: flex;
|
|
799
|
+ align-items: center;
|
|
800
|
+ flex: 1;
|
|
801
|
+ margin-right: px(30);
|
|
802
|
+ }
|
|
803
|
+
|
|
804
|
+ &__label {
|
|
805
|
+ display: flex;
|
|
806
|
+ justify-content: center;
|
|
807
|
+ align-items: center;
|
|
808
|
+ width: px(155);
|
|
809
|
+ height: px(50);
|
|
810
|
+ font-size: px(36);
|
|
811
|
+ color: #f66829;
|
|
812
|
+ border-radius: px(25);
|
|
813
|
+ border: solid px(3) #f66829;
|
|
814
|
+ }
|
|
815
|
+
|
|
816
|
+ &__text {
|
|
817
|
+ @include omit(px(620));
|
|
818
|
+ flex: 1;
|
|
819
|
+ margin-left: px(30);
|
|
820
|
+ font-size: px(36);
|
|
821
|
+ color: #f66829;
|
|
822
|
+ }
|
|
823
|
+
|
|
824
|
+ &__right {
|
|
825
|
+ display: flex;
|
|
826
|
+ align-items: baseline;
|
|
827
|
+ }
|
|
828
|
+
|
|
829
|
+ &__btn {
|
|
830
|
+ font-size: px(36);
|
|
831
|
+ color: #999;
|
|
832
|
+ }
|
|
833
|
+
|
|
834
|
+ &__arrows {
|
|
835
|
+ margin-left: px(30);
|
|
836
|
+ font-size: px(40);
|
|
837
|
+ color: #999;
|
|
838
|
+ }
|
|
839
|
+}
|
|
840
|
+
|
|
841
|
+.coupon-info {
|
|
842
|
+ display: flex;
|
|
843
|
+ align-items: center;
|
|
844
|
+ margin-top: px(40);
|
|
845
|
+
|
|
846
|
+ &__label {
|
|
847
|
+ width: px(33);
|
|
848
|
+ height: px(33);
|
|
849
|
+ }
|
|
850
|
+
|
|
851
|
+ &__text {
|
|
852
|
+ margin-left: px(10);
|
|
853
|
+ font-size: px(36);
|
|
854
|
+ color: #666;
|
|
855
|
+ }
|
|
856
|
+
|
|
857
|
+ &__price {
|
|
858
|
+ margin-left: px(15);
|
|
859
|
+ font-size: px(36);
|
|
860
|
+ color: #f66829;
|
|
861
|
+ }
|
|
862
|
+}
|
|
863
|
+
|
|
864
|
+.page_red {
|
|
865
|
+ .info__num {
|
|
866
|
+ color: #27a34f;
|
|
867
|
+ }
|
|
868
|
+}
|
|
869
|
+.special {
|
|
870
|
+ margin-top: px(10);
|
|
871
|
+ background-color: #fff;
|
|
872
|
+ padding: px(40);
|
|
873
|
+ color: #666;
|
|
874
|
+ .tit {
|
|
875
|
+ font-size: px(44);
|
|
876
|
+ text-align: center;
|
|
877
|
+ }
|
|
878
|
+ .des {
|
|
879
|
+ font-size: px(38);
|
|
880
|
+ padding-top: px(20);
|
|
881
|
+ }
|
|
882
|
+}
|
|
883
|
+</style>
|