|
@@ -37,7 +37,11 @@
|
37
|
37
|
{{ activity.brandName }}
|
38
|
38
|
</div>
|
39
|
39
|
<div class="tags">
|
40
|
|
- <span>263款</span>
|
|
40
|
+ <span
|
|
41
|
+ >{{
|
|
42
|
+ item.onlineProductCount
|
|
43
|
+ }}款</span
|
|
44
|
+ >
|
41
|
45
|
<span>正品保障</span>
|
42
|
46
|
<span>包邮</span>
|
43
|
47
|
</div>
|
|
@@ -46,7 +50,9 @@
|
46
|
50
|
</div>
|
47
|
51
|
</div>
|
48
|
52
|
</div>
|
49
|
|
- <div class="des">发货:xxxxx</div>
|
|
53
|
+ <div class="des">
|
|
54
|
+ 发货:{{ activity.deliveryDesc }}
|
|
55
|
+ </div>
|
50
|
56
|
<div class="des">
|
51
|
57
|
服务:退换无忧,支持7天无理由退换
|
52
|
58
|
</div>
|
|
@@ -73,56 +79,90 @@
|
73
|
79
|
>
|
74
|
80
|
</div>
|
75
|
81
|
</div>
|
|
82
|
+ <ul class="menu">
|
|
83
|
+ <li
|
|
84
|
+ class="menu__item"
|
|
85
|
+ :class="{
|
|
86
|
+ 'menu__item--active': sort === 0,
|
|
87
|
+ }"
|
|
88
|
+ @click="setSort(0)"
|
|
89
|
+ >
|
|
90
|
+ <div class="menu__text">综合</div>
|
|
91
|
+ <div
|
|
92
|
+ class="menu__sort"
|
|
93
|
+ :class="{
|
|
94
|
+ 'menu__sort--up': sort === 0,
|
|
95
|
+ 'menu__sort--down': sort === -100,
|
|
96
|
+ }"
|
|
97
|
+ ></div>
|
|
98
|
+ </li>
|
|
99
|
+ <li
|
|
100
|
+ class="menu__item"
|
|
101
|
+ :class="{
|
|
102
|
+ 'menu__item--active': sort === 2,
|
|
103
|
+ }"
|
|
104
|
+ @click="setSort(2)"
|
|
105
|
+ >
|
|
106
|
+ <div class="menu__text">销量</div>
|
|
107
|
+ <div
|
|
108
|
+ class="menu__sort"
|
|
109
|
+ :class="{
|
|
110
|
+ 'menu__sort--up': sort === 2,
|
|
111
|
+ 'menu__sort--down': sort === -2,
|
|
112
|
+ }"
|
|
113
|
+ ></div>
|
|
114
|
+ </li>
|
|
115
|
+ <li
|
|
116
|
+ class="menu__item"
|
|
117
|
+ :class="{
|
|
118
|
+ 'menu__item--active': sort === 1,
|
|
119
|
+ }"
|
|
120
|
+ @click="setSort(1)"
|
|
121
|
+ >
|
|
122
|
+ <div class="menu__text">价格</div>
|
|
123
|
+ <div
|
|
124
|
+ class="menu__sort"
|
|
125
|
+ :class="{
|
|
126
|
+ 'menu__sort--up': sort === 1,
|
|
127
|
+ 'menu__sort--down': sort === -1,
|
|
128
|
+ }"
|
|
129
|
+ ></div>
|
|
130
|
+ </li>
|
|
131
|
+ </ul>
|
76
|
132
|
<ul class="goods__list">
|
77
|
133
|
<li
|
78
|
134
|
class="goods__item"
|
79
|
|
- v-for="(item, index) in goodsList"
|
|
135
|
+ v-for="(item, index) in goodList"
|
80
|
136
|
:key="index"
|
81
|
137
|
>
|
82
|
|
- <div class="main">
|
|
138
|
+ <div class="main" @click="goDetail(item)">
|
83
|
139
|
<my-image
|
84
|
140
|
class="goods__img"
|
85
|
|
- :src="item.mainImage"
|
86
|
|
- @click="edit(item)"
|
|
141
|
+ :src="item.pictureUrls[0]"
|
87
|
142
|
></my-image>
|
88
|
143
|
<div class="goods__info">
|
89
|
144
|
<div class="goods__box">
|
90
|
|
- <div
|
91
|
|
- class="goods__title"
|
92
|
|
- @click="edit(item)"
|
93
|
|
- >
|
|
145
|
+ <div class="goods__title">
|
94
|
146
|
{{ item.name }}
|
95
|
147
|
</div>
|
96
|
|
- <div
|
97
|
|
- class="goods__sale"
|
98
|
|
- @click="edit(item)"
|
99
|
|
- >
|
100
|
|
- <span v-if="item.price">
|
|
148
|
+ <div class="goods__sale">
|
|
149
|
+ <span v-if="item.agentFee">
|
101
|
150
|
价格:¥{{
|
102
|
|
- item.price / 100
|
|
151
|
+ item.agentFee / 100
|
103
|
152
|
}}
|
104
|
153
|
</span>
|
105
|
154
|
|
106
|
|
- <span v-if="item.stock">
|
107
|
|
- 库存:{{ item.stock }}
|
|
155
|
+ <span
|
|
156
|
+ v-if="
|
|
157
|
+ item.totalInventory
|
|
158
|
+ "
|
|
159
|
+ >
|
|
160
|
+ 库存:{{
|
|
161
|
+ item.totalInventory
|
|
162
|
+ }}
|
108
|
163
|
</span>
|
109
|
164
|
</div>
|
110
|
165
|
</div>
|
111
|
|
- <!-- <div
|
112
|
|
- class="goods__price"
|
113
|
|
- @click="edit(item)"
|
114
|
|
- >
|
115
|
|
- <div class="goods__present">
|
116
|
|
- 价格:{{ "¥" + item.price / 100 }}
|
117
|
|
- </div>
|
118
|
|
- <div
|
119
|
|
- class="goods__original"
|
120
|
|
- v-if="item.stock !== 0"
|
121
|
|
- >
|
122
|
|
- 库存:{{ "¥" + item.stock }}
|
123
|
|
- </div>
|
124
|
|
- </div> -->
|
125
|
|
- <!-- 登录 -->
|
126
|
166
|
</div>
|
127
|
167
|
</div>
|
128
|
168
|
|
|
@@ -132,15 +172,13 @@
|
132
|
172
|
</div>
|
133
|
173
|
<div
|
134
|
174
|
class="btn"
|
135
|
|
- @click="sendProduct(item, 'text')"
|
|
175
|
+ @click="pushProduct(item)"
|
136
|
176
|
>
|
137
|
177
|
推荐
|
138
|
178
|
</div>
|
139
|
179
|
<div
|
140
|
180
|
class="btn"
|
141
|
|
- @click="
|
142
|
|
- sendProduct(item, 'product')
|
143
|
|
- "
|
|
181
|
+ @click="shareGood(item)"
|
144
|
182
|
>
|
145
|
183
|
分享
|
146
|
184
|
</div>
|
|
@@ -188,9 +226,15 @@ export default {
|
188
|
226
|
// 数据
|
189
|
227
|
data() {
|
190
|
228
|
return {
|
191
|
|
-
|
192
|
229
|
aid: "",
|
193
|
230
|
activity: {},
|
|
231
|
+ goodList: [],
|
|
232
|
+ goodPageIndex: 1,
|
|
233
|
+ sort: 0,
|
|
234
|
+ dataEnd: false,
|
|
235
|
+ shopId: "",
|
|
236
|
+ searchVal: "",
|
|
237
|
+ otherUrl: "https://bot.ixiaokejia.com/",
|
194
|
238
|
};
|
195
|
239
|
},
|
196
|
240
|
filters: {
|
|
@@ -236,28 +280,304 @@ export default {
|
236
|
280
|
|
237
|
281
|
onLoad(opts) {
|
238
|
282
|
this.aid = opts.id;
|
239
|
|
- },
|
240
|
283
|
|
241
|
|
- async onShow() {
|
242
|
|
- this.getActivity();
|
|
284
|
+ this.activity = this.$store.state.common.activityData;
|
|
285
|
+ // console.log(this.activity)
|
|
286
|
+ this.getGoods();
|
|
287
|
+ this.getShopInfo();
|
243
|
288
|
},
|
244
|
289
|
|
245
|
|
- onPullDownRefresh() {
|
246
|
|
- },
|
|
290
|
+ async onShow() {},
|
|
291
|
+
|
|
292
|
+ onPullDownRefresh() {},
|
247
|
293
|
|
248
|
294
|
// 函数
|
249
|
295
|
methods: {
|
250
|
|
- getActivity() {
|
|
296
|
+ // 获取店铺信息
|
|
297
|
+ getShopInfo() {
|
|
298
|
+ this.api
|
|
299
|
+ .get("/Shop/GetInfo", {}, { pass: true })
|
|
300
|
+ .then((infoRes) => {
|
|
301
|
+ this.shopId = infoRes.data.id;
|
|
302
|
+ });
|
|
303
|
+ },
|
|
304
|
+ // 设置排序
|
|
305
|
+ setSort(val) {
|
|
306
|
+ const self = this;
|
|
307
|
+
|
|
308
|
+ if (val === this.sort) {
|
|
309
|
+ if (val === 0) {
|
|
310
|
+ this.sort = -100;
|
|
311
|
+ } else if (val === -100) {
|
|
312
|
+ this.sort = 0;
|
|
313
|
+ } else {
|
|
314
|
+ this.sort = -this.sort;
|
|
315
|
+ }
|
|
316
|
+ } else {
|
|
317
|
+ this.sort = val;
|
|
318
|
+ }
|
|
319
|
+
|
|
320
|
+ this.getGoods();
|
|
321
|
+ },
|
|
322
|
+ getGoods() {
|
|
323
|
+ this.goodPageIndex = 1;
|
|
324
|
+ this.dataEnd = false;
|
|
325
|
+ let sendData = {
|
|
326
|
+ activityNo: this.activity.activityNo,
|
|
327
|
+ // keyword:'',
|
|
328
|
+ // asc:'',升降序,0-倒序,1-正序
|
|
329
|
+ // sortBy:''
|
|
330
|
+ pageIndex: this.goodPageIndex++,
|
|
331
|
+ };
|
|
332
|
+ if (this.searchVal) {
|
|
333
|
+ sendData.keyword = this.searchVal;
|
|
334
|
+ }
|
|
335
|
+ sendData = this.pushSort(sendData);
|
|
336
|
+
|
|
337
|
+ this.api.get("/Yx/GetProductList", sendData).then((res) => {
|
|
338
|
+ this.goodList = res.data;
|
|
339
|
+ if (!res.data.length) {
|
|
340
|
+ this.dataEnd = true;
|
|
341
|
+ }
|
|
342
|
+ });
|
|
343
|
+ },
|
|
344
|
+ getMoreGoods() {
|
|
345
|
+ if (this.dataEnd) {
|
|
346
|
+ return;
|
|
347
|
+ }
|
|
348
|
+ let sendData = {
|
|
349
|
+ activityNo: this.activity.activityNo,
|
|
350
|
+ // keyword:'',
|
|
351
|
+ // asc:'',升降序,0-倒序,1-正序
|
|
352
|
+ // sortBy:''
|
|
353
|
+ pageIndex: this.goodPageIndex++,
|
|
354
|
+ };
|
|
355
|
+ if (this.searchVal) {
|
|
356
|
+ sendData.keyword = this.searchVal;
|
|
357
|
+ }
|
|
358
|
+ sendData = this.pushSort(sendData);
|
|
359
|
+
|
|
360
|
+ this.api.get("/Yx/GetProductList", sendData).then((res) => {
|
|
361
|
+ this.goodList = [...this.goodList, ...res.data];
|
|
362
|
+ if (!res.data.length) {
|
|
363
|
+ this.dataEnd = true;
|
|
364
|
+ }
|
|
365
|
+ });
|
|
366
|
+ },
|
|
367
|
+ // 搜索
|
|
368
|
+ search() {
|
|
369
|
+ if (this.searchVal) {
|
|
370
|
+ this.getGoods();
|
|
371
|
+ }
|
|
372
|
+ },
|
|
373
|
+
|
|
374
|
+ closeSearchVal() {
|
|
375
|
+ this.searchVal = "";
|
|
376
|
+ this.getGoods();
|
|
377
|
+ },
|
|
378
|
+
|
|
379
|
+ pushSort(sendData) {
|
|
380
|
+ switch (this.sort) {
|
|
381
|
+ case 0:
|
|
382
|
+ sendData.sortBy = 0;
|
|
383
|
+ sendData.asc = 1;
|
|
384
|
+ break;
|
|
385
|
+ case -100:
|
|
386
|
+ sendData.sortBy = 0;
|
|
387
|
+ sendData.asc = 0;
|
|
388
|
+ break;
|
|
389
|
+ case 1:
|
|
390
|
+ sendData.sortBy = 1;
|
|
391
|
+ sendData.asc = 1;
|
|
392
|
+ break;
|
|
393
|
+ case -1:
|
|
394
|
+ sendData.sortBy = 1;
|
|
395
|
+ sendData.asc = 0;
|
|
396
|
+ break;
|
|
397
|
+ case 2:
|
|
398
|
+ sendData.sortBy = 2;
|
|
399
|
+ sendData.asc = 1;
|
|
400
|
+ break;
|
|
401
|
+ case -2:
|
|
402
|
+ sendData.sortBy = 2;
|
|
403
|
+ sendData.asc = 0;
|
|
404
|
+ break;
|
|
405
|
+ }
|
|
406
|
+ return sendData;
|
|
407
|
+ },
|
|
408
|
+
|
|
409
|
+ // 设置活动置顶
|
|
410
|
+ setActivityTop(val) {
|
|
411
|
+ if (val.top > 0) {
|
|
412
|
+ // 取消置顶
|
|
413
|
+ this.api
|
|
414
|
+ .get("/Yx/CancelActivityTop", {
|
|
415
|
+ aid: val.aid,
|
|
416
|
+ })
|
|
417
|
+ .then((res) => {
|
|
418
|
+ if (res.success) {
|
|
419
|
+ val.top = 0;
|
|
420
|
+ this.$forceUpdate();
|
|
421
|
+ this.fn.showToast("取消成功");
|
|
422
|
+ } else {
|
|
423
|
+ this.fn.showModal({
|
|
424
|
+ title: "设置失败",
|
|
425
|
+ content: res.message,
|
|
426
|
+ showCancel: false,
|
|
427
|
+ });
|
|
428
|
+ }
|
|
429
|
+ });
|
|
430
|
+ } else {
|
|
431
|
+ // 置顶
|
|
432
|
+ this.api
|
|
433
|
+ .get("/Yx/SetActivityTop", {
|
|
434
|
+ aid: val.aid,
|
|
435
|
+ })
|
|
436
|
+ .then((res) => {
|
|
437
|
+ if (res.success) {
|
|
438
|
+ val.top = 1;
|
|
439
|
+ this.$forceUpdate();
|
|
440
|
+ this.fn.showToast("置顶成功");
|
|
441
|
+ } else {
|
|
442
|
+ this.fn.showModal({
|
|
443
|
+ title: "设置失败",
|
|
444
|
+ content: res.message,
|
|
445
|
+ showCancel: false,
|
|
446
|
+ });
|
|
447
|
+ }
|
|
448
|
+ });
|
|
449
|
+ }
|
|
450
|
+ },
|
|
451
|
+
|
|
452
|
+ // 设置活动显示或隐藏
|
|
453
|
+ setActivityDisplay(val) {
|
|
454
|
+ let display = 0;
|
|
455
|
+ if (val.display === 1) {
|
|
456
|
+ // 隐藏
|
|
457
|
+ display = 0;
|
|
458
|
+ } else {
|
|
459
|
+ // 置顶
|
|
460
|
+ display = 1;
|
|
461
|
+ }
|
|
462
|
+ this.api
|
|
463
|
+ .get("/Yx/SetActivityDisplay", {
|
|
464
|
+ aid: val.aid,
|
|
465
|
+ display,
|
|
466
|
+ })
|
|
467
|
+ .then((res) => {
|
|
468
|
+ if (res.success) {
|
|
469
|
+ val.display = display;
|
|
470
|
+ this.$forceUpdate();
|
|
471
|
+ this.fn.showToast("设置成功");
|
|
472
|
+ } else {
|
|
473
|
+ this.fn.showModal({
|
|
474
|
+ title: "设置失败",
|
|
475
|
+ content: res.message,
|
|
476
|
+ showCancel: false,
|
|
477
|
+ });
|
|
478
|
+ }
|
|
479
|
+ });
|
|
480
|
+ },
|
|
481
|
+
|
|
482
|
+ // 推送
|
|
483
|
+ pushGive(item,type) {
|
|
484
|
+ let sendData = {
|
|
485
|
+ pid: item.aid,
|
|
486
|
+ aid: item.aid,
|
|
487
|
+ // storeId: item.storeId,
|
|
488
|
+ platform:1000
|
|
489
|
+ };
|
|
490
|
+ if (type === "text") {
|
|
491
|
+ sendData.sendTxt = false;
|
|
492
|
+ sendData.sendVideo = false;
|
|
493
|
+ sendData.sendImg = 0;
|
|
494
|
+ } else {
|
|
495
|
+ // sendData.sendTxt = true;
|
|
496
|
+ // sendData.sendVideo = true;
|
|
497
|
+ // sendData.sendImg = 3;
|
|
498
|
+ }
|
|
499
|
+
|
|
500
|
+ this.api
|
|
501
|
+ .get(this.otherUrl + "Home/sendproduct", sendData, {
|
|
502
|
+ pass: true,
|
|
503
|
+ })
|
|
504
|
+ .then((res) => {
|
|
505
|
+ this.fn.showToast(res.message);
|
|
506
|
+ });
|
|
507
|
+ },
|
|
508
|
+
|
|
509
|
+ // 分享
|
|
510
|
+ shareApp(val) {
|
|
511
|
+ uni.navigateToMiniProgram({
|
|
512
|
+ appId: "wx7d16ba51271496b8",
|
|
513
|
+ path: `/pages/recommend/list?shopId=${this.shopId}&aid=${val.aid}`,
|
|
514
|
+ extraData: {
|
|
515
|
+ shopId: this.shopId,
|
|
516
|
+ aid: val.aid,
|
|
517
|
+ },
|
|
518
|
+ });
|
|
519
|
+ },
|
|
520
|
+
|
|
521
|
+ // 推荐商品
|
|
522
|
+ pushProduct(item,type) {
|
251
|
523
|
let sendData = {
|
252
|
|
- cateId: 1,
|
253
|
|
- pageIndex: 1,
|
|
524
|
+ pid: item.id,
|
|
525
|
+ // storeId: item.storeId,
|
|
526
|
+ platform:1000
|
254
|
527
|
};
|
255
|
|
- this.api.get("/Yx/GetActivityList", sendData).then((res) => {
|
256
|
|
- this.activity = res.data[0];
|
|
528
|
+ if (type === "text") {
|
|
529
|
+ sendData.sendTxt = false;
|
|
530
|
+ sendData.sendVideo = false;
|
|
531
|
+ sendData.sendImg = 0;
|
|
532
|
+ } else {
|
|
533
|
+ // sendData.sendTxt = true;
|
|
534
|
+ // sendData.sendVideo = true;
|
|
535
|
+ // sendData.sendImg = 3;
|
|
536
|
+ }
|
|
537
|
+
|
|
538
|
+ this.api
|
|
539
|
+ .get(this.otherUrl + "Home/sendproduct", sendData, {
|
|
540
|
+ pass: true,
|
|
541
|
+ })
|
|
542
|
+ .then((res) => {
|
|
543
|
+ this.fn.showToast(res.message);
|
|
544
|
+ });
|
|
545
|
+ },
|
|
546
|
+
|
|
547
|
+ // 分享商品
|
|
548
|
+ shareGood(val) {
|
|
549
|
+ uni.navigateToMiniProgram({
|
|
550
|
+ appId: "wx7d16ba51271496b8",
|
|
551
|
+ path: `/pages/recommend/detail?shopId=${this.shopId}&goodsId=${val.id}`,
|
|
552
|
+ extraData: {
|
|
553
|
+ shopId: this.shopId,
|
|
554
|
+ id: val.id,
|
|
555
|
+ },
|
257
|
556
|
});
|
258
|
557
|
},
|
259
|
558
|
|
|
559
|
+ // 更多
|
|
560
|
+ openMore(val) {
|
|
561
|
+ let arr = [];
|
|
562
|
+ if (val.top === 0) {
|
|
563
|
+ arr.push("置顶");
|
|
564
|
+ } else {
|
|
565
|
+ arr.push("取消置顶");
|
|
566
|
+ }
|
|
567
|
+ this.fn.showActionSheet(arr).then((res) => {
|
|
568
|
+ switch (arr[res]) {
|
|
569
|
+ case "置顶":
|
|
570
|
+ // this.edit(val);
|
|
571
|
+ breathisk;
|
|
572
|
+ case "取消置顶":
|
|
573
|
+ // .remove(val, false);
|
|
574
|
+ break;
|
|
575
|
+ }
|
|
576
|
+ });
|
|
577
|
+ },
|
260
|
578
|
|
|
579
|
+ // 去详情
|
|
580
|
+ goDetail(val) {},
|
261
|
581
|
},
|
262
|
582
|
|
263
|
583
|
// 数据计算
|
|
@@ -582,9 +902,9 @@ page {
|
582
|
902
|
width: 100%;
|
583
|
903
|
@include omits(2);
|
584
|
904
|
max-height: px(88);
|
585
|
|
- line-height: px(44);
|
|
905
|
+ line-height: px(48);
|
586
|
906
|
margin-top: px(30);
|
587
|
|
- font-size: px(36);
|
|
907
|
+ font-size: px(40);
|
588
|
908
|
color: #333;
|
589
|
909
|
}
|
590
|
910
|
|
|
@@ -592,10 +912,10 @@ page {
|
592
|
912
|
// margin-top: px(30);
|
593
|
913
|
}
|
594
|
914
|
&__sale {
|
595
|
|
- font-size: px(32);
|
|
915
|
+ font-size: px(38);
|
596
|
916
|
line-height: px(40);
|
597
|
917
|
color: #999;
|
598
|
|
- margin-top: px(20);
|
|
918
|
+ margin-top: px(30);
|
599
|
919
|
span ~ span {
|
600
|
920
|
margin-left: px(20);
|
601
|
921
|
}
|