|
@@ -0,0 +1,869 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page shop-cart-page" :class="{ page_red: theme === 1 }">
|
|
3
|
+ <div class="search">
|
|
4
|
+ <input
|
|
5
|
+ class="search__input"
|
|
6
|
+ type="text"
|
|
7
|
+ :focus="true"
|
|
8
|
+ v-model="keyword"
|
|
9
|
+ @confirm="confirm"
|
|
10
|
+ placeholder="搜索本店商品"
|
|
11
|
+ />
|
|
12
|
+ <div class="search__cancel" @click="confirm">搜索</div>
|
|
13
|
+ </div>
|
|
14
|
+
|
|
15
|
+ <div class="page-tab">
|
|
16
|
+ <div
|
|
17
|
+ class="tab-item"
|
|
18
|
+ :class="{ on: curTab === '0' }"
|
|
19
|
+ @click="tabClick('0')"
|
|
20
|
+ >
|
|
21
|
+ 商品
|
|
22
|
+ </div>
|
|
23
|
+ <div
|
|
24
|
+ class="tab-item"
|
|
25
|
+ :class="{ on: curTab === '1' }"
|
|
26
|
+ @click="tabClick('1')"
|
|
27
|
+ >
|
|
28
|
+ 活动
|
|
29
|
+ </div>
|
|
30
|
+ </div>
|
|
31
|
+
|
|
32
|
+ <scroll-view
|
|
33
|
+ class="page__scroll"
|
|
34
|
+ :scroll-y="true"
|
|
35
|
+ @scrolltolower="getMore"
|
|
36
|
+ >
|
|
37
|
+ <div v-if="curTab === '0'">
|
|
38
|
+ <ul class="menu">
|
|
39
|
+ <li
|
|
40
|
+ class="menu__item"
|
|
41
|
+ :class="{ 'menu__item--active': sort === 2 }"
|
|
42
|
+ @click="setSort(2)"
|
|
43
|
+ >
|
|
44
|
+ <div class="menu__text">销量</div>
|
|
45
|
+ </li>
|
|
46
|
+ <li
|
|
47
|
+ class="menu__item"
|
|
48
|
+ :class="{ 'menu__item--active': sort === 3 }"
|
|
49
|
+ @click="setSort(3)"
|
|
50
|
+ >
|
|
51
|
+ <div class="menu__text">新品</div>
|
|
52
|
+ </li>
|
|
53
|
+ <li
|
|
54
|
+ class="menu__item"
|
|
55
|
+ :class="{
|
|
56
|
+ 'menu__item--active': sort === 1,
|
|
57
|
+ }"
|
|
58
|
+ @click="setSort('Price')"
|
|
59
|
+ >
|
|
60
|
+ <div class="menu__text">价格</div>
|
|
61
|
+ <div
|
|
62
|
+ class="menu__sort"
|
|
63
|
+ :class="{
|
|
64
|
+ 'menu__sort--up': asc == 1 && sort === 1,
|
|
65
|
+ 'menu__sort--down': asc == 0 && sort === 1,
|
|
66
|
+ }"
|
|
67
|
+ ></div>
|
|
68
|
+ </li>
|
|
69
|
+ </ul>
|
|
70
|
+ <ul class="goods">
|
|
71
|
+ <li
|
|
72
|
+ class="goods__item"
|
|
73
|
+ v-for="(item, index) in goodsList"
|
|
74
|
+ :key="index"
|
|
75
|
+ >
|
|
76
|
+ <my-image
|
|
77
|
+ class="goods__img"
|
|
78
|
+ :src="item.pictureUrls[0]"
|
|
79
|
+ @click="jumpGoodsDetail(item)"
|
|
80
|
+ ></my-image>
|
|
81
|
+ <div
|
|
82
|
+ class="goods__title"
|
|
83
|
+ @click="jumpGoodsDetail(item)"
|
|
84
|
+ >
|
|
85
|
+ {{ item.name }}
|
|
86
|
+ </div>
|
|
87
|
+ <div
|
|
88
|
+ class="goods__coupon"
|
|
89
|
+ v-if="item.coupon"
|
|
90
|
+ @click="jumpGoodsDetail(item)"
|
|
91
|
+ >
|
|
92
|
+ {{ item.coupon }}
|
|
93
|
+ </div>
|
|
94
|
+ <div class="goods__price">
|
|
95
|
+ <div
|
|
96
|
+ class="goods__present"
|
|
97
|
+ @click="jumpGoodsDetail(item)"
|
|
98
|
+ >
|
|
99
|
+ <span class="goods__rmb">¥</span>
|
|
100
|
+ <span class="goods__big">{{
|
|
101
|
+ item.minPrice / 100
|
|
102
|
+ }}</span>
|
|
103
|
+ </div>
|
|
104
|
+ <div
|
|
105
|
+ class="goods__original"
|
|
106
|
+ @click="jumpGoodsDetail(item)"
|
|
107
|
+ v-if="item.tagPrice !== 0"
|
|
108
|
+ >
|
|
109
|
+ {{ "¥" + item.tagPrice / 100 }}
|
|
110
|
+ </div>
|
|
111
|
+ </div>
|
|
112
|
+ </li>
|
|
113
|
+ </ul>
|
|
114
|
+ <div class="more-text" v-if="goodsList.length && !isHaveMore">
|
|
115
|
+ - 没有更多了 -
|
|
116
|
+ </div>
|
|
117
|
+ <div class="null" v-if="loading && !goodsList.length">
|
|
118
|
+ <img
|
|
119
|
+ class="null__img"
|
|
120
|
+ src="/static/common/goods_null_2.jpg"
|
|
121
|
+ alt
|
|
122
|
+ />
|
|
123
|
+ <div class="null__title">抱歉!没有找到相关商品~</div>
|
|
124
|
+ </div>
|
|
125
|
+ </div>
|
|
126
|
+ <div v-if="curTab === '1'">
|
|
127
|
+ <ul class="shop-list">
|
|
128
|
+ <li
|
|
129
|
+ class="shop-item"
|
|
130
|
+ v-for="item of activityList"
|
|
131
|
+ :key="item.aid"
|
|
132
|
+ >
|
|
133
|
+ <div class="info" @click="jumpList(item)">
|
|
134
|
+ <my-image
|
|
135
|
+ :src="item.brandLogo"
|
|
136
|
+ class="shop-img"
|
|
137
|
+ ></my-image>
|
|
138
|
+ <div class="r">
|
|
139
|
+ <div class="main">
|
|
140
|
+ <div class="name">{{ item.brandName }}</div>
|
|
141
|
+ <div class="other">
|
|
142
|
+ <span class="tag"
|
|
143
|
+ >{{
|
|
144
|
+ item.onlineProductCount
|
|
145
|
+ }}款</span
|
|
146
|
+ >
|
|
147
|
+
|
|
148
|
+ <span class="date"
|
|
149
|
+ >{{
|
|
150
|
+ item.beginTime | timestampToDate
|
|
151
|
+ }}
|
|
152
|
+ —
|
|
153
|
+ {{
|
|
154
|
+ item.endTime | timestampToDate
|
|
155
|
+ }}</span
|
|
156
|
+ >
|
|
157
|
+ </div>
|
|
158
|
+ </div>
|
|
159
|
+ <span class="btn">进入会场</span>
|
|
160
|
+ </div>
|
|
161
|
+ </div>
|
|
162
|
+ <div class="good-list">
|
|
163
|
+ <section
|
|
164
|
+ class="good-item"
|
|
165
|
+ v-for="good of item.prods"
|
|
166
|
+ :key="good.pid"
|
|
167
|
+ @click="jumpDetail(good)"
|
|
168
|
+ >
|
|
169
|
+ <div class="box">
|
|
170
|
+ <my-image
|
|
171
|
+ mode="widthFix"
|
|
172
|
+ :src="good.pictureUrls[0]"
|
|
173
|
+ class="good-img"
|
|
174
|
+ ></my-image>
|
|
175
|
+ <div class="good-name">{{ good.name }}</div>
|
|
176
|
+ <div class="price">
|
|
177
|
+ ¥{{ good.minPrice | minuteToRmb2 }}
|
|
178
|
+ </div>
|
|
179
|
+ <div
|
|
180
|
+ class="tag-price"
|
|
181
|
+ v-if="
|
|
182
|
+ good.maxPrice &&
|
|
183
|
+ good.maxPrice !== good.minPrice
|
|
184
|
+ "
|
|
185
|
+ >
|
|
186
|
+ ¥{{ good.maxPrice | minuteToRmb2 }}
|
|
187
|
+ </div>
|
|
188
|
+ </div>
|
|
189
|
+ </section>
|
|
190
|
+ </div>
|
|
191
|
+ </li>
|
|
192
|
+ </ul>
|
|
193
|
+ <div
|
|
194
|
+ class="more-text"
|
|
195
|
+ v-if="activityList.length && !isHaveMore"
|
|
196
|
+ >
|
|
197
|
+ - 没有更多了 -
|
|
198
|
+ </div>
|
|
199
|
+ <div class="null" v-if="loading && !activityList.length">
|
|
200
|
+ <img
|
|
201
|
+ class="null__img"
|
|
202
|
+ src="/static/common/goods_null_2.jpg"
|
|
203
|
+ alt
|
|
204
|
+ />
|
|
205
|
+ <div class="null__title">抱歉!没有找到相关商品~</div>
|
|
206
|
+ </div>
|
|
207
|
+ </div>
|
|
208
|
+ </scroll-view>
|
|
209
|
+ </div>
|
|
210
|
+</template>
|
|
211
|
+
|
|
212
|
+<script>
|
|
213
|
+import MyImage from "../../components/image/index";
|
|
214
|
+import FInputNumber from "../../components/form/inputNumber";
|
|
215
|
+
|
|
216
|
+export default {
|
|
217
|
+ name: "",
|
|
218
|
+ components: { MyImage, FInputNumber },
|
|
219
|
+ // 数据
|
|
220
|
+ data() {
|
|
221
|
+ return {
|
|
222
|
+ title: "", // 标题(搜索关键字)
|
|
223
|
+ page: 1, // 页码
|
|
224
|
+ activityList: [],
|
|
225
|
+ goodsList:[],
|
|
226
|
+ isHaveMore: true, // 是否有更多数据
|
|
227
|
+ loading: false, // 是否加载完成
|
|
228
|
+ goods: null, // 详情数据 加入购物车时用
|
|
229
|
+ curTab: "0",
|
|
230
|
+ };
|
|
231
|
+ },
|
|
232
|
+
|
|
233
|
+ onLoad() {
|
|
234
|
+ const self = this;
|
|
235
|
+ self.fn.shareMenu();
|
|
236
|
+
|
|
237
|
+ if (!self.loading) {
|
|
238
|
+ uni.showLoading({
|
|
239
|
+ title: "加载中...",
|
|
240
|
+ });
|
|
241
|
+ }
|
|
242
|
+ },
|
|
243
|
+
|
|
244
|
+ async onShow() {
|
|
245
|
+ const self = this;
|
|
246
|
+
|
|
247
|
+ await self.fn.init();
|
|
248
|
+ self.fn.shareMenu();
|
|
249
|
+ self.title = self.$mp.query.title;
|
|
250
|
+ self.fn.setTitle(self.title);
|
|
251
|
+ this.tabClick('0')
|
|
252
|
+ },
|
|
253
|
+
|
|
254
|
+ onShareAppMessage() {
|
|
255
|
+ const self = this;
|
|
256
|
+ let obj = {
|
|
257
|
+ ...self.$mp.query,
|
|
258
|
+ shopId: this.activeShop.id,
|
|
259
|
+ uid: this.user.user.id,
|
|
260
|
+ };
|
|
261
|
+
|
|
262
|
+ if (this.activeShop.store) {
|
|
263
|
+ obj.storeId = this.activeShop.store.id;
|
|
264
|
+ }
|
|
265
|
+ return {
|
|
266
|
+ title: self.siteTitle,
|
|
267
|
+ path: self.router.getPath(self.$mp.page.route, obj),
|
|
268
|
+ };
|
|
269
|
+ },
|
|
270
|
+
|
|
271
|
+ onPullDownRefresh() {
|
|
272
|
+ const self = this;
|
|
273
|
+ if(self.curTab === '0'){
|
|
274
|
+ this.getGoodsList();
|
|
275
|
+ }else{
|
|
276
|
+ self.getActivityList();
|
|
277
|
+ }
|
|
278
|
+ },
|
|
279
|
+
|
|
280
|
+ // 函数
|
|
281
|
+ methods: {
|
|
282
|
+ tabClick(val) {
|
|
283
|
+ this.curTab = val;
|
|
284
|
+ if(val==='0'){
|
|
285
|
+ this.getGoodsList();
|
|
286
|
+ }else{
|
|
287
|
+ this.getActivityList();
|
|
288
|
+ }
|
|
289
|
+ },
|
|
290
|
+
|
|
291
|
+ getMore(){
|
|
292
|
+ const self = this;
|
|
293
|
+ if(self.curTab === '0'){
|
|
294
|
+
|
|
295
|
+ }else{
|
|
296
|
+ self.getMoreActivity();
|
|
297
|
+ }
|
|
298
|
+ },
|
|
299
|
+
|
|
300
|
+ // 获取活动列表
|
|
301
|
+ getActivityList() {
|
|
302
|
+ const self = this;
|
|
303
|
+
|
|
304
|
+ let keyword = self.title;
|
|
305
|
+
|
|
306
|
+ self.page = 1;
|
|
307
|
+ uni.showLoading({
|
|
308
|
+ title: "加载中...",
|
|
309
|
+ });
|
|
310
|
+ self.api
|
|
311
|
+ .get("/Product/GetActivityList", {
|
|
312
|
+ // aid:'1384044884066840578',
|
|
313
|
+ keyword: keyword,
|
|
314
|
+ pageIndex: self.page,
|
|
315
|
+ pageSize: 20,
|
|
316
|
+ })
|
|
317
|
+ .then((res) => {
|
|
318
|
+ uni.hideLoading();
|
|
319
|
+ uni.stopPullDownRefresh();
|
|
320
|
+ let list = JSON.parse(res.data.list);
|
|
321
|
+ if (list.length) {
|
|
322
|
+ self.page++;
|
|
323
|
+ } else {
|
|
324
|
+ self.isHaveMore = false;
|
|
325
|
+ }
|
|
326
|
+
|
|
327
|
+ self.activityList = list;
|
|
328
|
+ self.loading = true;
|
|
329
|
+ uni.hideLoading();
|
|
330
|
+ });
|
|
331
|
+ },
|
|
332
|
+
|
|
333
|
+ // 获取更多活动
|
|
334
|
+ getMoreActivity() {
|
|
335
|
+ const self = this;
|
|
336
|
+
|
|
337
|
+ self.api
|
|
338
|
+ .get("/Product/GetActivityList", {
|
|
339
|
+ keyword: self.title,
|
|
340
|
+ pageIndex: self.page,
|
|
341
|
+ pageSize: 20,
|
|
342
|
+ })
|
|
343
|
+ .then((res) => {
|
|
344
|
+ let list = JSON.parse(res.data.list);
|
|
345
|
+ if (list.length) {
|
|
346
|
+ self.page++;
|
|
347
|
+ } else {
|
|
348
|
+ self.isHaveMore = false;
|
|
349
|
+ }
|
|
350
|
+
|
|
351
|
+ self.activityList = self.activityList.concat(list);
|
|
352
|
+ this.setGoodsList();
|
|
353
|
+ });
|
|
354
|
+ },
|
|
355
|
+
|
|
356
|
+ // 获取商品列表
|
|
357
|
+ getGoodsList() {
|
|
358
|
+ const self = this;
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+ self.page = 1;
|
|
362
|
+ uni.showLoading({
|
|
363
|
+ title: "加载中...",
|
|
364
|
+ });
|
|
365
|
+ self.api
|
|
366
|
+ .get("/Product/GetHHSGProductList", {
|
|
367
|
+ keyword: self.title,
|
|
368
|
+ pageIndex: self.page,
|
|
369
|
+ pageSize: 20,
|
|
370
|
+ })
|
|
371
|
+ .then((res) => {
|
|
372
|
+ uni.hideLoading();
|
|
373
|
+ uni.stopPullDownRefresh();
|
|
374
|
+ let data = JSON.parse(res.data.list);
|
|
375
|
+ if (data.length) {
|
|
376
|
+ self.page++;
|
|
377
|
+ } else {
|
|
378
|
+ self.isHaveMore = false;
|
|
379
|
+ }
|
|
380
|
+
|
|
381
|
+ self.goodsList = data;
|
|
382
|
+ self.loading = true;
|
|
383
|
+ this.setGoodsList();
|
|
384
|
+ uni.hideLoading();
|
|
385
|
+ });
|
|
386
|
+ },
|
|
387
|
+
|
|
388
|
+ // 获取更多商品
|
|
389
|
+ getMoreGoods() {
|
|
390
|
+ const self = this;
|
|
391
|
+
|
|
392
|
+ self.api
|
|
393
|
+ .get("/Product/GetHHSGProductList", {
|
|
394
|
+ keyword: self.title,
|
|
395
|
+ pageIndex: self.page,
|
|
396
|
+ pageSize: 20,
|
|
397
|
+ })
|
|
398
|
+ .then((res) => {
|
|
399
|
+ let data = JSON.parse(res.data.list);
|
|
400
|
+ if (data.length) {
|
|
401
|
+ self.page++;
|
|
402
|
+ } else {
|
|
403
|
+ self.isHaveMore = false;
|
|
404
|
+ }
|
|
405
|
+
|
|
406
|
+ self.goodsList = self.goodsList.concat(data);
|
|
407
|
+ this.setGoodsList();
|
|
408
|
+ });
|
|
409
|
+ },
|
|
410
|
+
|
|
411
|
+ jumpList(item) {
|
|
412
|
+ this.router.push({
|
|
413
|
+ path: "/pages/recommend/list",
|
|
414
|
+ query: {
|
|
415
|
+ aid: item.activityNo,
|
|
416
|
+ },
|
|
417
|
+ });
|
|
418
|
+ },
|
|
419
|
+
|
|
420
|
+ jumpDetail(good) {
|
|
421
|
+ this.router.push({
|
|
422
|
+ path: "/pages/recommend/detail",
|
|
423
|
+ query: {
|
|
424
|
+ goodsId: good.pid,
|
|
425
|
+ },
|
|
426
|
+ });
|
|
427
|
+ },
|
|
428
|
+ // 跳转到商品详情
|
|
429
|
+ jumpGoodsDetail(val) {
|
|
430
|
+ const self = this;
|
|
431
|
+
|
|
432
|
+ self.router.push({
|
|
433
|
+ path: "/pages/recommend/detail",
|
|
434
|
+ query: {
|
|
435
|
+ goodsId: val.id,
|
|
436
|
+ },
|
|
437
|
+ });
|
|
438
|
+ },
|
|
439
|
+ },
|
|
440
|
+
|
|
441
|
+ // 数据计算
|
|
442
|
+ computed: {
|
|
443
|
+ // 判断主题 1:红色 2:绿色
|
|
444
|
+ theme() {
|
|
445
|
+ return this.$store.state.common.theme;
|
|
446
|
+ },
|
|
447
|
+ user() {
|
|
448
|
+ return this.$store.state.user;
|
|
449
|
+ },
|
|
450
|
+ },
|
|
451
|
+
|
|
452
|
+ // 数据监听
|
|
453
|
+ watch: {},
|
|
454
|
+};
|
|
455
|
+</script>
|
|
456
|
+
|
|
457
|
+<style>
|
|
458
|
+page {
|
|
459
|
+ height: 100%;
|
|
460
|
+}
|
|
461
|
+</style>
|
|
462
|
+
|
|
463
|
+<style lang="scss" scoped>
|
|
464
|
+.search {
|
|
465
|
+ display: flex;
|
|
466
|
+ justify-content: space-between;
|
|
467
|
+ align-items: center;
|
|
468
|
+ width: 100%;
|
|
469
|
+ height: px(128);
|
|
470
|
+ padding: 0 px(45) px(4);
|
|
471
|
+ background-color: #efefef;
|
|
472
|
+
|
|
473
|
+ &__input {
|
|
474
|
+ width: px(820);
|
|
475
|
+ height: px(86);
|
|
476
|
+ padding: 0 px(24);
|
|
477
|
+ font-size: px(36);
|
|
478
|
+ color: #000;
|
|
479
|
+ background-color: #fff;
|
|
480
|
+ border-radius: px(8);
|
|
481
|
+ }
|
|
482
|
+
|
|
483
|
+ &__cancel {
|
|
484
|
+ font-size: px(36);
|
|
485
|
+ color: #000;
|
|
486
|
+ }
|
|
487
|
+}
|
|
488
|
+.page-tab {
|
|
489
|
+ // height: px(100);
|
|
490
|
+ display: flex;
|
|
491
|
+ justify-content: center;
|
|
492
|
+ align-items: center;
|
|
493
|
+ .tab-item {
|
|
494
|
+ width: 40%;
|
|
495
|
+ height: px(120);
|
|
496
|
+ line-height: px(120);
|
|
497
|
+ border-bottom: 1px solid #f1f1f1;
|
|
498
|
+ text-align: center;
|
|
499
|
+ font-size: px(44);
|
|
500
|
+ &.on {
|
|
501
|
+ color: #27a34f;
|
|
502
|
+ }
|
|
503
|
+ }
|
|
504
|
+}
|
|
505
|
+.page {
|
|
506
|
+ position: relative;
|
|
507
|
+ height: 100%;
|
|
508
|
+
|
|
509
|
+ &__scroll {
|
|
510
|
+ position: absolute;
|
|
511
|
+ top: px(248);
|
|
512
|
+ bottom: 0;
|
|
513
|
+ left: 0;
|
|
514
|
+ right: 0;
|
|
515
|
+ z-index: 1;
|
|
516
|
+ }
|
|
517
|
+}
|
|
518
|
+
|
|
519
|
+.null {
|
|
520
|
+ display: flex;
|
|
521
|
+ flex-direction: column;
|
|
522
|
+ justify-content: center;
|
|
523
|
+ align-items: center;
|
|
524
|
+ padding-top: px(115);
|
|
525
|
+
|
|
526
|
+ &__img {
|
|
527
|
+ width: px(741);
|
|
528
|
+ height: px(340);
|
|
529
|
+ }
|
|
530
|
+
|
|
531
|
+ &__title {
|
|
532
|
+ margin-top: px(60);
|
|
533
|
+ font-size: px(42);
|
|
534
|
+ color: #666;
|
|
535
|
+ }
|
|
536
|
+}
|
|
537
|
+
|
|
538
|
+.more-text {
|
|
539
|
+ display: flex;
|
|
540
|
+ justify-content: center;
|
|
541
|
+ padding-bottom: px(60);
|
|
542
|
+ font-size: px(34);
|
|
543
|
+ color: #999;
|
|
544
|
+}
|
|
545
|
+
|
|
546
|
+.shop-list {
|
|
547
|
+ .shop-item {
|
|
548
|
+ padding: px(30);
|
|
549
|
+ background-color: #fff;
|
|
550
|
+ & ~ .shop-item {
|
|
551
|
+ margin-top: px(30);
|
|
552
|
+ }
|
|
553
|
+ .info {
|
|
554
|
+ display: flex;
|
|
555
|
+ justify-content: space-between;
|
|
556
|
+ .shop-img {
|
|
557
|
+ width: px(110);
|
|
558
|
+ margin-right: px(30);
|
|
559
|
+ border: 1px solid #fafafa;
|
|
560
|
+ flex-shrink: 0;
|
|
561
|
+ /deep/ img {
|
|
562
|
+ width: px(110);
|
|
563
|
+ height: px(110);
|
|
564
|
+ }
|
|
565
|
+ }
|
|
566
|
+ .r {
|
|
567
|
+ width: 100%;
|
|
568
|
+ display: flex;
|
|
569
|
+ justify-content: space-between;
|
|
570
|
+ align-items: center;
|
|
571
|
+ .main {
|
|
572
|
+ width: 100%;
|
|
573
|
+ }
|
|
574
|
+ .btn {
|
|
575
|
+ color: #fff;
|
|
576
|
+ background-color: $color;
|
|
577
|
+ padding: px(15) px(25);
|
|
578
|
+ flex-shrink: 0;
|
|
579
|
+ font-size: px(38);
|
|
580
|
+ }
|
|
581
|
+ .name {
|
|
582
|
+ font-size: px(40);
|
|
583
|
+ @include omits(2);
|
|
584
|
+ }
|
|
585
|
+ .other {
|
|
586
|
+ margin-top: px(10);
|
|
587
|
+ }
|
|
588
|
+ .tag {
|
|
589
|
+ height: px(44);
|
|
590
|
+ font-size: px(32);
|
|
591
|
+ line-height: px(44);
|
|
592
|
+ padding: 0 px(8);
|
|
593
|
+ display: inline-block;
|
|
594
|
+ margin-right: px(15);
|
|
595
|
+ color: $color;
|
|
596
|
+ border: 1px solid $color;
|
|
597
|
+ border-radius: px(5);
|
|
598
|
+ }
|
|
599
|
+ .date {
|
|
600
|
+ display: inline-block;
|
|
601
|
+ margin-left: px(10);
|
|
602
|
+ font-size: px(38);
|
|
603
|
+ color: #666;
|
|
604
|
+ }
|
|
605
|
+ }
|
|
606
|
+ }
|
|
607
|
+ }
|
|
608
|
+ .good-list {
|
|
609
|
+ margin: px(30) px(20) 0;
|
|
610
|
+ display: flex;
|
|
611
|
+ .good-item {
|
|
612
|
+ width: 33.333333%;
|
|
613
|
+ padding: 0 px(20);
|
|
614
|
+ }
|
|
615
|
+ .good-img {
|
|
616
|
+ width: 100%;
|
|
617
|
+ /deep/ img {
|
|
618
|
+ width: 100%;
|
|
619
|
+ }
|
|
620
|
+ }
|
|
621
|
+ .good-name {
|
|
622
|
+ margin-top: px(20);
|
|
623
|
+ font-size: px(40);
|
|
624
|
+ @include omits(2);
|
|
625
|
+ }
|
|
626
|
+ .price {
|
|
627
|
+ margin-top: px(20);
|
|
628
|
+ color: $color;
|
|
629
|
+ font-size: px(42);
|
|
630
|
+ }
|
|
631
|
+ .tag-price {
|
|
632
|
+ margin-top: px(10);
|
|
633
|
+ color: #999;
|
|
634
|
+ line-height: 1;
|
|
635
|
+ font-size: px(36);
|
|
636
|
+ text-decoration: line-through;
|
|
637
|
+ }
|
|
638
|
+ }
|
|
639
|
+}
|
|
640
|
+.menu {
|
|
641
|
+ display: flex;
|
|
642
|
+ justify-content: space-between;
|
|
643
|
+ align-items: center;
|
|
644
|
+ height: px(110);
|
|
645
|
+ margin-bottom: px(5);
|
|
646
|
+ padding: 0 px(85);
|
|
647
|
+ background-color: #fff;
|
|
648
|
+ // box-shadow: 0 px(-5) px(10) #333;
|
|
649
|
+ margin-top: px(30);
|
|
650
|
+ &__item {
|
|
651
|
+ display: flex;
|
|
652
|
+ align-items: center;
|
|
653
|
+ }
|
|
654
|
+
|
|
655
|
+ &__text {
|
|
656
|
+ font-size: px(40);
|
|
657
|
+ color: #000;
|
|
658
|
+ }
|
|
659
|
+
|
|
660
|
+ &__item--active &__text {
|
|
661
|
+ color: #27a34f;
|
|
662
|
+ }
|
|
663
|
+
|
|
664
|
+ &__sort {
|
|
665
|
+ margin-left: px(15);
|
|
666
|
+
|
|
667
|
+ &:before {
|
|
668
|
+ display: block;
|
|
669
|
+ content: "";
|
|
670
|
+ width: 0;
|
|
671
|
+ height: 0;
|
|
672
|
+ margin-bottom: px(10);
|
|
673
|
+ border-width: px(12);
|
|
674
|
+ border-style: solid;
|
|
675
|
+ border-color: transparent transparent #ccc transparent;
|
|
676
|
+ }
|
|
677
|
+
|
|
678
|
+ &:after {
|
|
679
|
+ display: block;
|
|
680
|
+ content: "";
|
|
681
|
+ width: 0;
|
|
682
|
+ height: 0;
|
|
683
|
+ border-width: px(12);
|
|
684
|
+ border-style: solid;
|
|
685
|
+ border-color: #ccc transparent transparent transparent;
|
|
686
|
+ }
|
|
687
|
+
|
|
688
|
+ &--up:before {
|
|
689
|
+ border-color: transparent transparent #27a34f transparent;
|
|
690
|
+ }
|
|
691
|
+
|
|
692
|
+ &--down:after {
|
|
693
|
+ border-color: #27a34f transparent transparent transparent;
|
|
694
|
+ }
|
|
695
|
+ }
|
|
696
|
+}
|
|
697
|
+
|
|
698
|
+.goods {
|
|
699
|
+ display: flex;
|
|
700
|
+ flex-wrap: wrap;
|
|
701
|
+ justify-content: space-between;
|
|
702
|
+ padding: 0 px(25) px(30);
|
|
703
|
+
|
|
704
|
+ &__item {
|
|
705
|
+ width: px(500);
|
|
706
|
+ padding-bottom: px(30);
|
|
707
|
+ margin-top: px(25);
|
|
708
|
+ overflow: hidden;
|
|
709
|
+ border-radius: px(15);
|
|
710
|
+ background-color: #fff;
|
|
711
|
+ position: relative;
|
|
712
|
+
|
|
713
|
+ &:nth-child(2n + 1) {
|
|
714
|
+ margin-right: px(30);
|
|
715
|
+ }
|
|
716
|
+ }
|
|
717
|
+ .button {
|
|
718
|
+ // overflow: visible;
|
|
719
|
+ // position: absolute;
|
|
720
|
+ // bottom: 0;
|
|
721
|
+ // right: 0;
|
|
722
|
+ // z-index: 1;
|
|
723
|
+ // padding: px(10) px(30) px(30) px(10);
|
|
724
|
+ }
|
|
725
|
+ .btns {
|
|
726
|
+ overflow: visible;
|
|
727
|
+ position: absolute;
|
|
728
|
+ bottom: px(30);
|
|
729
|
+ right: px(30);
|
|
730
|
+ z-index: 1;
|
|
731
|
+ display: flex;
|
|
732
|
+ align-items: center;
|
|
733
|
+ }
|
|
734
|
+ .cart-num {
|
|
735
|
+ // padding: px(30) px(10) px(10) px(30);
|
|
736
|
+ padding: 0 px(30);
|
|
737
|
+ box-sizing: border-box;
|
|
738
|
+ min-width: px(60);
|
|
739
|
+ }
|
|
740
|
+ .num-input {
|
|
741
|
+ overflow: visible;
|
|
742
|
+ position: absolute;
|
|
743
|
+ bottom: px(20);
|
|
744
|
+ right: px(20);
|
|
745
|
+ z-index: 1;
|
|
746
|
+ }
|
|
747
|
+ &__add-text {
|
|
748
|
+ height: px(60);
|
|
749
|
+ line-height: px(60);
|
|
750
|
+ background-color: #27a34f;
|
|
751
|
+ color: #fff;
|
|
752
|
+ font-size: px(30);
|
|
753
|
+ padding: 0 px(20);
|
|
754
|
+ border-radius: px(30);
|
|
755
|
+ }
|
|
756
|
+ &__add {
|
|
757
|
+ background-color: #27a34f;
|
|
758
|
+ width: px(60);
|
|
759
|
+ height: px(60);
|
|
760
|
+ border-radius: 50%;
|
|
761
|
+ // box-shadow: px(1) px(2) px(6) #27A34F;
|
|
762
|
+ position: relative;
|
|
763
|
+ &::after,
|
|
764
|
+ &::before {
|
|
765
|
+ content: "";
|
|
766
|
+ position: absolute;
|
|
767
|
+ top: 50%;
|
|
768
|
+ left: 50%;
|
|
769
|
+ z-index: 1;
|
|
770
|
+ width: 60%;
|
|
771
|
+ height: px(6);
|
|
772
|
+ border-radius: px(6);
|
|
773
|
+ background: #fff;
|
|
774
|
+ }
|
|
775
|
+ &::after {
|
|
776
|
+ transform: translate(-50%, -50%);
|
|
777
|
+ }
|
|
778
|
+ &::before {
|
|
779
|
+ transform-origin: center;
|
|
780
|
+ transform: translate(-50%, -50%) rotate(90deg);
|
|
781
|
+ }
|
|
782
|
+ }
|
|
783
|
+
|
|
784
|
+ &__remove {
|
|
785
|
+ background-color: #fff;
|
|
786
|
+ width: px(60);
|
|
787
|
+ height: px(60);
|
|
788
|
+ border-radius: 50%;
|
|
789
|
+ border: 1px solid #999;
|
|
790
|
+ position: relative;
|
|
791
|
+ &::after {
|
|
792
|
+ content: "";
|
|
793
|
+ position: absolute;
|
|
794
|
+ top: 50%;
|
|
795
|
+ left: 50%;
|
|
796
|
+ z-index: 1;
|
|
797
|
+ width: 60%;
|
|
798
|
+ height: px(6);
|
|
799
|
+ border-radius: px(6);
|
|
800
|
+ background: #999;
|
|
801
|
+ transform: translate(-50%, -50%);
|
|
802
|
+ }
|
|
803
|
+ }
|
|
804
|
+
|
|
805
|
+ &__img /deep/ img {
|
|
806
|
+ width: px(500);
|
|
807
|
+ height: px(500);
|
|
808
|
+ }
|
|
809
|
+
|
|
810
|
+ &__title {
|
|
811
|
+ @include omits(2);
|
|
812
|
+ height: px(110);
|
|
813
|
+ margin: px(20);
|
|
814
|
+ font-size: px(40);
|
|
815
|
+ color: #333;
|
|
816
|
+ }
|
|
817
|
+
|
|
818
|
+ &__coupon {
|
|
819
|
+ display: inline-flex;
|
|
820
|
+ justify-content: center;
|
|
821
|
+ align-items: center;
|
|
822
|
+ height: px(40);
|
|
823
|
+ padding: 0 px(15);
|
|
824
|
+ margin: 0 px(20);
|
|
825
|
+ font-size: px(30);
|
|
826
|
+ color: #27a34f;
|
|
827
|
+ border-radius: px(20);
|
|
828
|
+ border: solid px(3) #27a34f;
|
|
829
|
+ }
|
|
830
|
+
|
|
831
|
+ &__price {
|
|
832
|
+ display: flex;
|
|
833
|
+ align-items: flex-end;
|
|
834
|
+ padding: 0 px(20);
|
|
835
|
+ margin-top: px(20);
|
|
836
|
+ }
|
|
837
|
+
|
|
838
|
+ &__present {
|
|
839
|
+ color: #000;
|
|
840
|
+ }
|
|
841
|
+
|
|
842
|
+ &__rmb {
|
|
843
|
+ font-size: px(30);
|
|
844
|
+ }
|
|
845
|
+
|
|
846
|
+ &__big {
|
|
847
|
+ font-size: px(38);
|
|
848
|
+ }
|
|
849
|
+
|
|
850
|
+ &__original {
|
|
851
|
+ position: relative;
|
|
852
|
+ margin-left: px(20);
|
|
853
|
+ font-size: px(32);
|
|
854
|
+ color: #999;
|
|
855
|
+
|
|
856
|
+ &:after {
|
|
857
|
+ content: "";
|
|
858
|
+ position: absolute;
|
|
859
|
+ top: 50%;
|
|
860
|
+ left: 0;
|
|
861
|
+ z-index: 1;
|
|
862
|
+ width: 100%;
|
|
863
|
+ height: px(1);
|
|
864
|
+ transform: translateY(-100%);
|
|
865
|
+ background-color: #999;
|
|
866
|
+ }
|
|
867
|
+ }
|
|
868
|
+}
|
|
869
|
+</style>
|