Browse Source

分享转

cr 3 years ago
parent
commit
e5412ab10b
5 changed files with 902 additions and 27 deletions
  1. 6 0
      src/pages.json
  2. 7 6
      src/pages/pay/order-share.vue
  3. 596 0
      src/pages/pay/order-share2.vue
  4. 292 20
      src/pages/pay/result.vue
  5. 1 1
      src/pages/user/index.vue

+ 6 - 0
src/pages.json

@@ -237,6 +237,12 @@
237 237
             "style": {
238 238
                 "navigationBarTitleText": "订单分享"
239 239
             }
240
+        },
241
+        {
242
+            "path": "pages/pay/order-share2",
243
+            "style": {
244
+                "navigationBarTitleText": "订单分享"
245
+            }
240 246
         }
241 247
     ]
242 248
 }

+ 7 - 6
src/pages/pay/order-share.vue

@@ -10,11 +10,11 @@
10 10
                     >{{ orderData.user.nickName }}向您推荐了订单</span
11 11
                 >
12 12
             </div>
13
-            <div class="line">
13
+            <!-- <div class="line">
14 14
                 <span class="line-ele"></span>
15 15
                 <span class="text">大家都在抢</span>
16 16
                 <span class="line-ele"></span>
17
-            </div>
17
+            </div> -->
18 18
             <ul class="good-list">
19 19
                 <li
20 20
                     class="item"
@@ -93,7 +93,8 @@
93 93
                     </div>
94 94
                 </li>
95 95
             </ul>
96
-            <div class="more-loading">加载中...</div>
96
+            <div class="more-loading" v-if="moreLoading">加载中...</div>
97
+            <div class="more-loading" v-else-if="!isHaveMore">没有更多数据了</div>
97 98
         </div>
98 99
         <div class="navigation">
99 100
             <ul class="navigation__list">
@@ -155,7 +156,7 @@ export default {
155 156
             loading: false, // 是否加载完成
156 157
             goodsList: [], // 详情数据 加入购物车时用
157 158
             page: 1,
158
-            moreLoading: true,
159
+            moreLoading: false,
159 160
         };
160 161
     },
161 162
 
@@ -198,7 +199,7 @@ export default {
198 199
                 .get("/Product/GetHHSGProductList", {
199 200
                     pageIndex: self.page,
200 201
                     pageSize: 20,
201
-                    aid: "1391692975070859265",
202
+                    
202 203
                 })
203 204
                 .then((res) => {
204 205
                     uni.hideLoading();
@@ -292,7 +293,7 @@ export default {
292 293
                 .get("/Product/GetHHSGProductList", {
293 294
                     pageIndex: self.page,
294 295
                     pageSize: 20,
295
-                    aid: "1391692975070859265",
296
+                    
296 297
                 })
297 298
                 .then((res) => {
298 299
                     this.moreLoading = false;

+ 596 - 0
src/pages/pay/order-share2.vue

@@ -0,0 +1,596 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="head-main">
4
+            <div class="user-info">
5
+                <my-image
6
+                    class="user-head"
7
+                    :src="orderData.user.headIcon"
8
+                ></my-image>
9
+                <span class="name"
10
+                    >{{ orderData.user.nickName }}向您推荐了订单</span
11
+                >
12
+            </div>
13
+            <!-- <div class="line">
14
+                <span class="line-ele"></span>
15
+                <span class="text">大家都在抢</span>
16
+                <span class="line-ele"></span>
17
+            </div> -->
18
+            <ul class="good-list">
19
+                <li
20
+                    class="item"
21
+                    v-for="(item, index) of orderData.productList"
22
+                    :key="index"
23
+                >
24
+                    <my-image
25
+                        class="good-img"
26
+                        @click="goDetail(item)"
27
+                        :src="item.image"
28
+                    ></my-image>
29
+                    <div class="con">
30
+                        <div class="info">
31
+                            <div class="name" @click="goDetail(item)">
32
+                                {{ item.name }}
33
+                            </div>
34
+                            <div
35
+                                class="tag-price"
36
+                                @click="goDetail(item)"
37
+                                v-if="item.tagPrice"
38
+                            >
39
+                                <span class="symbol">¥</span>
40
+                                {{ item.tagPrice / 100 }}
41
+                            </div>
42
+                            <div class="price" @click="goDetail(item)">
43
+                                <span class="symbol">¥</span>
44
+                                {{ item.price / 100 }}
45
+                            </div>
46
+                        </div>
47
+                        <div class="tool">
48
+                            <div class="btn" @click="addCart(item)">
49
+                                加入购物车
50
+                            </div>
51
+                        </div>
52
+                    </div>
53
+                </li>
54
+            </ul>
55
+        </div>
56
+
57
+        <div class="more-list" v-if="goodsList && goodsList.length">
58
+            <div class="more-tit">精品推荐</div>
59
+            <ul class="good-list">
60
+                <li
61
+                    class="item"
62
+                    v-for="(item, index) of goodsList"
63
+                    :key="index"
64
+                >
65
+                    <my-image
66
+                        class="good-img"
67
+                        @click="goDetail(item)"
68
+                        :src="item.image"
69
+                    ></my-image>
70
+                    <div class="con">
71
+                        <div class="info" @click="goDetail(item)">
72
+                            <div class="name">{{ item.name }}</div>
73
+                            <!-- <div class="des">
74
+                                <span>5月14日提货</span>
75
+                                <span>已售5.6万件</span>
76
+                            </div> -->
77
+                            <div
78
+                                class="tag-price"
79
+                                @click="goDetail(item)"
80
+                                v-if="item.tagPrice"
81
+                            >
82
+                                <span class="symbol">¥</span>
83
+                                {{ item.tagPrice / 100 }}
84
+                            </div>
85
+                            <div class="price" @click="goDetail(item)">
86
+                                <span class="symbol">¥</span>
87
+                                {{ item.price / 100 }}
88
+                            </div>
89
+                        </div>
90
+                        <div class="tool" @click="addCart(item)">
91
+                            <div class="btn">加入购物车</div>
92
+                        </div>
93
+                    </div>
94
+                </li>
95
+            </ul>
96
+            <div class="more-loading" v-if="moreLoading">加载中...</div>
97
+            <div class="more-loading" v-else-if="!isHaveMore">没有更多数据了</div>
98
+        </div>
99
+        <div class="navigation">
100
+            <ul class="navigation__list">
101
+                <!-- <button class="button">
102
+                    <li class="navigation__item">
103
+                        <i class="iconfont iconkefu navigation__icon"></i>
104
+                        <div class="navigation__text">找客服</div>
105
+                    </li>
106
+                </button> -->
107
+                <li
108
+                    class="navigation__item"
109
+                    @click="
110
+                        jump({ isTabBer: true, path: '/pages/goods/index' })
111
+                    "
112
+                >
113
+                    <i class="iconfont icondianpu navigation__icon"></i>
114
+                    <div class="navigation__text">首页</div>
115
+                </li>
116
+                <li class="navigation__item">
117
+                    <button v-if="user.login" class="button" @click="jumpCart">
118
+                        <i class="iconfont icongouwuche navigation__icon"></i>
119
+                        <div class="navigation__text">购物车</div>
120
+                    </button>
121
+
122
+                    <div class="navigation__num" v-if="cartInfo.count">
123
+                        {{ cartInfo.count }}
124
+                    </div>
125
+                </li>
126
+            </ul>
127
+            <div class="navigation__right">
128
+                <div class="price">
129
+                    总价:<span class="symbol">¥</span
130
+                    ><span class="num">{{ cartInfo.amount / 100 }}</span>
131
+                </div>
132
+                <button class="button" @click="submit">
133
+                    <div class="navigation__btn">去结算</div>
134
+                </button>
135
+            </div>
136
+        </div>
137
+        <g-spec ref="spec" :goods="goods" :spec.sync="spec"></g-spec>
138
+    </div>
139
+</template>
140
+
141
+<script>
142
+import MyImage from "../../components/image/index";
143
+import GSpec from "../goods/spec";
144
+export default {
145
+    name: "",
146
+    components: { MyImage, GSpec },
147
+    // 数据
148
+    data() {
149
+        return {
150
+            orderId: "",
151
+            orderData: {},
152
+            cartInfo: {},
153
+            goods: {},
154
+
155
+            isHaveMore: true, // 是否有更多数据
156
+            loading: false, // 是否加载完成
157
+            goodsList: [], // 详情数据 加入购物车时用
158
+            page: 1,
159
+            moreLoading: false,
160
+        };
161
+    },
162
+
163
+    async onShow() {},
164
+    onLoad(opts) {
165
+        this.orderId = opts.orderId;
166
+        this.getCartNumber();
167
+        this.getOrderData();
168
+        this.getGoodsList();
169
+    },
170
+
171
+    onReachBottom() {
172
+        this.getMoreGoods();
173
+    },
174
+    // 函数
175
+    methods: {
176
+        getOrderData() {
177
+            this.api
178
+                .get("/Order/GetOrderInfo", {
179
+                    id: this.orderId,
180
+                })
181
+                .then((res) => {
182
+                    this.orderData = res.data;
183
+                    console.log(this.orderData);
184
+                    // this.orderProuct = this.orderData.
185
+                    this.fn.shareMenu();
186
+                    console.log(this.orderData);
187
+                });
188
+        },
189
+
190
+        // 获取商品列表
191
+        getGoodsList() {
192
+            const self = this;
193
+
194
+            self.page = 1;
195
+            uni.showLoading({
196
+                title: "加载中...",
197
+            });
198
+            self.api
199
+                .get("/Product/GetList", {
200
+                    pageIndex: self.page,
201
+                    pageSize: 20,
202
+                })
203
+                .then((res) => {
204
+                    uni.hideLoading();
205
+                    uni.stopPullDownRefresh();
206
+                    let data = res.data.data;
207
+                    if (data.length) {
208
+                        self.page++;
209
+                    } else {
210
+                        self.isHaveMore = false;
211
+                    }
212
+
213
+                    self.goodsList = data;
214
+                    console.log(data);
215
+                    // self.loading = true;
216
+                    uni.hideLoading();
217
+                });
218
+        },
219
+
220
+        // 获取更多商品
221
+        getMoreGoods() {
222
+            const self = this;
223
+            this.moreLoading = true;
224
+            self.api
225
+                .get("/Product/GetList", {
226
+                    pageIndex: self.page,
227
+                    pageSize: 20,
228
+                })
229
+                .then((res) => {
230
+                    this.moreLoading = false;
231
+                    let data = res.data.data;
232
+                    if (data.length) {
233
+                        self.page++;
234
+                    } else {
235
+                        self.isHaveMore = false;
236
+                    }
237
+
238
+                    self.goodsList = self.goodsList.concat(data);
239
+                });
240
+        },
241
+
242
+        // 加入购物车
243
+        addCart(val) {
244
+            const self = this;
245
+            let pid = val.id || val.pid;
246
+            uni.showLoading({
247
+                title: "处理中...",
248
+            });
249
+            self.api
250
+                .get(
251
+                    "/Product/Detail",
252
+                    {
253
+                        id:pid,
254
+                    },
255
+                    {
256
+                        pass: true,
257
+                    }
258
+                )
259
+                .then((res) => {
260
+                    self.goods = JSON.parse(res.data);
261
+                    console.log(self.goods);
262
+                    if (!self.goods.skuDetail.skus || self.goods.skuDetail.skus.length===0) {
263
+                        self.api
264
+                            .post("/Order/AddCart", {
265
+                                productId: pid,
266
+                                count: 1,
267
+                                skuId: self.goods.skuDetail.skus[0].skuId,
268
+                                productSource: 0, //,
269
+                            })
270
+                            .then((res) => {
271
+                                uni.hideLoading();
272
+                                this.fn.showToast("已成功加入购物车");
273
+                                this.getCartNumber();
274
+                            });
275
+                    } else {
276
+                        uni.hideLoading();
277
+                        this.openSpec();
278
+                    }
279
+                });
280
+        },
281
+        goDetail(val) {
282
+            const self = this;
283
+
284
+            self.router.push({
285
+                path: "/pages/goods/detail",
286
+                query: {
287
+                    goodsId: val.id,
288
+                },
289
+            });
290
+        },
291
+        // 打开规则选项
292
+        openSpec() {
293
+            this.$refs.spec.open("cart", (res) => {
294
+                this.getCartNumber();
295
+                this.fn.showToast("已成功加入购物车");
296
+            });
297
+        },
298
+
299
+        // 获取购物车数量
300
+        getCartNumber() {
301
+            const self = this;
302
+            self.api
303
+                .get("/Order/GetCartInfo", { productSource: 0 })
304
+                .then((res) => {
305
+                    this.cartInfo = res.data;
306
+                });
307
+        },
308
+
309
+        // 跳转到购物车
310
+        jumpCart() {
311
+            this.router.push({
312
+                isTabBer: true,
313
+                path: "/pages/cart/index",
314
+            });
315
+        },
316
+
317
+        submit() {
318
+            this.router.push({
319
+                path: "/pages/order/affirm",
320
+                query: {
321
+                    ids: this.cartInfo.orderItemIds.join(","),
322
+                    productSource: 1
323
+                },
324
+            });
325
+        },
326
+    },
327
+
328
+    // 数据计算
329
+    computed: {
330
+        user() {
331
+            return this.$store.state.user;
332
+        },
333
+    },
334
+
335
+    // 数据监听
336
+    watch: {},
337
+};
338
+</script>
339
+
340
+<style lang="scss" scoped>
341
+.page {
342
+    height: 100vh;
343
+    overflow: auto;
344
+    padding-bottom: px(185);
345
+}
346
+.head-main {
347
+    padding: px(45);
348
+    background: linear-gradient(#27a34f, #78d197);
349
+    font-size: px(44);
350
+    .user-info {
351
+        display: flex;
352
+        align-items: center;
353
+        justify-content: center;
354
+    }
355
+    .user-head {
356
+        width: px(70);
357
+        height: px(70);
358
+        border-radius: 50%;
359
+        background-color: #eee;
360
+        flex-shrink: 0;
361
+        margin-right: px(20);
362
+        /deep/ img {
363
+            width: px(60);
364
+            height: px(60);
365
+        }
366
+    }
367
+    .name {
368
+        color: #fff;
369
+    }
370
+    .line {
371
+        display: flex;
372
+        align-items: center;
373
+        justify-content: center;
374
+        margin-top: px(30);
375
+    }
376
+    .text {
377
+        font-size: px(40);
378
+        color: #fff;
379
+        padding: 0 px(20);
380
+    }
381
+    .line-ele {
382
+        height: 1px;
383
+        width: 35%;
384
+        background-color: #fff;
385
+    }
386
+}
387
+.good-list {
388
+    margin-top: px(60);
389
+    .item {
390
+        display: flex;
391
+        justify-content: space-between;
392
+        align-items: stretch;
393
+        background-color: #fff;
394
+        border-radius: px(20);
395
+        padding: px(30);
396
+        .good-img {
397
+            background-color: pink;
398
+            width: px(440);
399
+            height: px(440);
400
+            flex-shrink: 0;
401
+            margin-right: px(30);
402
+            /deep/ img {
403
+                width: px(440);
404
+                height: px(440);
405
+            }
406
+        }
407
+        .con {
408
+            width: 100%;
409
+            display: flex;
410
+            flex-direction: column;
411
+            justify-content: space-between;
412
+            .name {
413
+                font-size: px(44);
414
+                color: #333;
415
+                font-weight: bold;
416
+                @include omits(2);
417
+            }
418
+            .des {
419
+                font-size: px(40);
420
+                color: #888;
421
+                margin-top: px(20);
422
+                span ~ span {
423
+                    margin-left: px(10);
424
+                    padding-left: px(10);
425
+                    border-left: 1px solid #f1f1f1;
426
+                }
427
+            }
428
+            .price {
429
+                color: #e30b00;
430
+                font-size: px(54);
431
+                margin-top: px(20);
432
+                .symbol {
433
+                    font-size: px(40);
434
+                }
435
+            }
436
+            .tag-price {
437
+                margin-top: px(20);
438
+                color: #999;
439
+                text-decoration: line-through;
440
+                font-size: px(42);
441
+                .symbol {
442
+                    font-size: px(40);
443
+                }
444
+            }
445
+            .tool {
446
+                display: flex;
447
+                justify-content: space-between;
448
+                align-items: center;
449
+                .btn {
450
+                    width: 100%;
451
+                    height: px(100);
452
+                    border-radius: px(50);
453
+                    display: flex;
454
+                    align-items: center;
455
+                    justify-content: center;
456
+                    color: #fff;
457
+                    font-size: px(40);
458
+                    background-color: #27a34f;
459
+                }
460
+            }
461
+        }
462
+    }
463
+    .item ~ .item {
464
+        margin-top: px(30);
465
+    }
466
+}
467
+.navigation {
468
+    position: absolute;
469
+    bottom: 0;
470
+    left: 0;
471
+    z-index: 995;
472
+    display: flex;
473
+    justify-content: space-between;
474
+    align-items: center;
475
+    width: 100%;
476
+    height: px(185);
477
+    padding: 0 px(40);
478
+    background-color: #fff;
479
+    border-top: 1px solid #f1f1f1;
480
+
481
+    &--iphoneX {
482
+        height: px(215);
483
+        padding-bottom: px(30);
484
+    }
485
+
486
+    &__list {
487
+        display: flex;
488
+        justify-content: space-between;
489
+        align-items: center;
490
+        width: px(200);
491
+    }
492
+
493
+    &__item {
494
+        position: relative;
495
+        display: flex;
496
+        flex-direction: column;
497
+        justify-content: center;
498
+        align-items: center;
499
+    }
500
+
501
+    &__icon {
502
+        font-size: px(54);
503
+        color: #666;
504
+    }
505
+
506
+    &__text {
507
+        margin-top: px(20);
508
+        font-size: px(32);
509
+        color: #666;
510
+    }
511
+
512
+    &__num {
513
+        position: absolute;
514
+        top: 0;
515
+        right: 0;
516
+        z-index: 0;
517
+        display: flex;
518
+        justify-content: center;
519
+        align-items: center;
520
+        min-width: px(40);
521
+        height: px(40);
522
+        padding: 0 px(15);
523
+        transform: translate(30%, -30%);
524
+        font-size: px(26);
525
+        color: #fff;
526
+        border-radius: px(20);
527
+        background-color: #ff4421;
528
+    }
529
+
530
+    &__right {
531
+        display: flex;
532
+        justify-content: flex-end;
533
+        align-items: center;
534
+        flex: 1;
535
+        margin-left: px(40);
536
+    }
537
+
538
+    &__btn {
539
+        display: flex;
540
+        justify-content: center;
541
+        align-items: center;
542
+        width: px(270);
543
+        height: px(110);
544
+        font-size: px(40);
545
+        color: #fff;
546
+        border-radius: px(55);
547
+        background-color: #27a34f;
548
+        margin-left: px(20);
549
+        &--cart {
550
+            color: #262626;
551
+            background-color: #e5e5e5;
552
+        }
553
+    }
554
+
555
+    &__null {
556
+        display: flex;
557
+        justify-content: center;
558
+        align-items: center;
559
+        width: 100%;
560
+        height: px(110);
561
+        font-size: px(40);
562
+        color: #fff;
563
+        border-radius: px(55);
564
+        background-color: #e5e5e5;
565
+    }
566
+    .price {
567
+        font-size: px(40);
568
+    }
569
+    .symbol {
570
+    }
571
+    .symbol,
572
+    .num {
573
+        color: red;
574
+    }
575
+    .num {
576
+        font-size: px(50);
577
+    }
578
+}
579
+
580
+.more-loading {
581
+    font-size: px(40);
582
+    color: #999;
583
+    text-align: center;
584
+    padding: px(30);
585
+}
586
+.more-list {
587
+    padding: px(45);
588
+    background-color: #f1f1f1;
589
+}
590
+.more-tit {
591
+    font-size: px(50);
592
+    font-weight: bold;
593
+    text-align: center;
594
+    padding-top: px(30);
595
+}
596
+</style>

+ 292 - 20
src/pages/pay/result.vue

@@ -16,8 +16,16 @@
16 16
             </div>
17 17
 
18 18
             <div class="btn-box">
19
-                <button open-type="share" class="big__btn" v-if="type === 'success'">
20
-                    {{enablePoints?'分享到群,赚积分':'分享到群,提醒群主接单'}}
19
+                <button
20
+                    open-type="share"
21
+                    class="big__btn"
22
+                    v-if="type === 'success'"
23
+                >
24
+                    {{
25
+                        enablePoints
26
+                            ? "分享到群,赚积分"
27
+                            : "分享到群,提醒群主接单"
28
+                    }}
21 29
                 </button>
22 30
                 <div class="pay__btns">
23 31
                     <div class="pay__btn" @click="jumpOrderDetail">
@@ -38,7 +46,7 @@
38 46
         </div>
39 47
 
40 48
         <!-- yx -->
41
-        <div v-if="goodsList && goodsList.length">
49
+        <div v-if="productSource == 1 && goodsList && goodsList.length">
42 50
             <div class="more-title">买了又买</div>
43 51
             <ul class="goods">
44 52
                 <li
@@ -94,6 +102,68 @@
94 102
                 <div class="null__title">抱歉!没有找到相关商品~</div>
95 103
             </div>
96 104
         </div>
105
+
106
+        <!-- shop -->
107
+        <div v-if="productSource == 0 && shopGoodsList && shopGoodsList.length">
108
+            <div class="more-title">买了又买</div>
109
+            <ul class="goods">
110
+                <li
111
+                    class="goods__item"
112
+                    v-for="(item, index) in shopGoodsList"
113
+                    :key="index"
114
+                >
115
+                    <my-image
116
+                        class="goods__img"
117
+                        :src="item.image"
118
+                        @click="jumpShopGoodsDetail(item)"
119
+                    ></my-image>
120
+                    <div
121
+                        class="goods__title"
122
+                        @click="jumpShopGoodsDetail(item)"
123
+                    >
124
+                        {{ item.name }}
125
+                    </div>
126
+                    <div class="goods__price">
127
+                        <div
128
+                            class="goods__present"
129
+                            @click="jumpShopGoodsDetail(item)"
130
+                        >
131
+                            <span class="goods__rmb">¥</span>
132
+                            <span class="goods__big">{{
133
+                                item.price / 100
134
+                            }}</span>
135
+                        </div>
136
+                        <div
137
+                            class="goods__original"
138
+                            @click="jumpShopGoodsDetail(item)"
139
+                            v-if="item.tagPrice !== 0"
140
+                        >
141
+                            {{ "¥" + item.tagPrice / 100 }}
142
+                        </div>
143
+                    </div>
144
+                </li>
145
+            </ul>
146
+            <div class="more-text" v-if="moreLoading">- 加载中... -</div>
147
+            <div
148
+                class="more-text"
149
+                v-else-if="shopGoodsList.length && !isHaveMore"
150
+            >
151
+                - {{ moreLoading ? "加载中..." : "没有更多了" }} -
152
+            </div>
153
+            <div class="null" v-if="loading && !shopGoodsList.length">
154
+                <img
155
+                    class="null__img"
156
+                    src="/static/common/goods_null_2.jpg"
157
+                    alt
158
+                />
159
+                <div class="null__title">抱歉!没有找到相关商品~</div>
160
+            </div>
161
+        </div>
162
+        <canvas
163
+            class="canvas__forward"
164
+            canvas-id="canvas2"
165
+            :disable-scroll="true"
166
+        ></canvas>
97 167
     </div>
98 168
 </template>
99 169
 
@@ -111,13 +181,16 @@ export default {
111 181
             layout: [],
112 182
             sub: "",
113 183
             orderData: {},
114
-
115
-            isHaveMore: true, // 是否有更多数据
184
+            productSource: 1, // 1优选 0 店铺
185
+            enablePoints: false,
116 186
             loading: false, // 是否加载完成
117
-            goodsList: [], // 详情数据 加入购物车时用
187
+            moreLoading: false,
118 188
             page: 1,
119
-            moreLoading: true,
120
-            enablePoints:false,
189
+
190
+            goodsList: [], // 详情数据
191
+            isHaveMore: true, // 是否有更多数据
192
+
193
+            shopGoodsList: [],
121 194
         };
122 195
     },
123 196
 
@@ -134,25 +207,39 @@ export default {
134 207
             this.getEnablePoints();
135 208
         }
136 209
         await self.fn.init();
137
-        this.getGoodsList();
138 210
     },
139 211
 
140 212
     onReachBottom() {
141
-        this.getMoreGoods();
213
+        if (this.productSource == 1) {
214
+            this.getMoreGoods();
215
+        } else {
216
+            this.getMoreShopGoods();
217
+        }
142 218
     },
143 219
     onShareAppMessage() {
144
-        let url = `/pages/pay/integral-goods?orderId=${this.orderId}&shopId=${this.activeShop.id}`;
220
+        let url = '/pages/pay/order-share';
221
+        if(this.productSource == 0){
222
+            url = '/pages/pay/order-share2';
223
+        }
224
+        url +=`?orderId=${this.orderId}&shopId=${this.activeShop.id}&uid=${this.user.id}`;
145 225
 
226
+        if(this.activeShop){
227
+            url+=`&shopId=${this.activeShop.id}`;
228
+        }
229
+        if(this.activeShop.store){
230
+            url+=`&storeId=${this.activeShop.store.id}`
231
+        }
146 232
         return {
147
-            title: `来自${this.orderData.shipDetail.receiverAddressInfo.realName}的订单分享`,
233
+            title: `我购买了${this.orderData.orderInfo.itemOrders[0].title},推荐您来看看`,
148 234
             path: url,
149
-            imageUrl: this.orderData.orderInfo.itemOrders[0].imgUrl,
235
+            imageUrl:
236
+                this.canvasforwardPath ||
237
+                this.orderData.orderInfo.itemOrders[0].imgUrl,
150 238
         };
151 239
     },
152 240
     // 函数
153 241
     methods: {
154
-
155
-        getEnablePoints(){
242
+        getEnablePoints() {
156 243
             this.api
157 244
                 .get("/Shop/GetEnablePoints", {
158 245
                     id: this.orderId,
@@ -169,8 +256,14 @@ export default {
169 256
                 })
170 257
                 .then((res) => {
171 258
                     this.orderData = JSON.parse(res.data);
259
+                    this.productSource = this.orderData.orderInfo.productSource;
172 260
                     this.fn.shareMenu();
173
-                    console.log(this.orderData)
261
+                    if (this.productSource == 1) {
262
+                        this.getGoodsList();
263
+                        this.creationShare2();
264
+                    } else {
265
+                        this.getShopGoods();
266
+                    }
174 267
                 });
175 268
         },
176 269
 
@@ -179,8 +272,6 @@ export default {
179 272
             const self = this;
180 273
 
181 274
             self.fn.pay(self.orderId, self.price);
182
-
183
-            
184 275
         },
185 276
 
186 277
         // 跳转到订单详情
@@ -211,7 +302,7 @@ export default {
211 302
                 .get("/Product/GetHHSGProductList", {
212 303
                     pageIndex: self.page,
213 304
                     pageSize: 20,
214
-                    aid: "1391692975070859265",
305
+                    
215 306
                 })
216 307
                 .then((res) => {
217 308
                     uni.hideLoading();
@@ -238,7 +329,7 @@ export default {
238 329
                 .get("/Product/GetHHSGProductList", {
239 330
                     pageIndex: self.page,
240 331
                     pageSize: 20,
241
-                    aid: "1391692975070859265",
332
+                    
242 333
                 })
243 334
                 .then((res) => {
244 335
                     this.moreLoading = false;
@@ -253,6 +344,55 @@ export default {
253 344
                 });
254 345
         },
255 346
 
347
+        // 店铺商品
348
+        getShopGoods() {
349
+            const self = this;
350
+            self.page = 1;
351
+            uni.showLoading({
352
+                title: "加载中...",
353
+            });
354
+            self.api
355
+                .get("/Product/GetList", {
356
+                    pageIndex: self.page,
357
+                    pageSize: 20,
358
+                })
359
+                .then((res) => {
360
+                    uni.hideLoading();
361
+                    uni.stopPullDownRefresh();
362
+                    if (res.data.data.length) {
363
+                        self.page++;
364
+                    } else {
365
+                        self.isHaveMore = false;
366
+                    }
367
+
368
+                    self.shopGoodsList = res.data.data;
369
+                    uni.hideLoading();
370
+                });
371
+        },
372
+
373
+        // 更多店铺商品
374
+        getMoreShopGoods() {
375
+            const self = this;
376
+            this.moreLoading = true;
377
+            self.api
378
+                .get("/Product/GetList", {
379
+                    pageIndex: self.page,
380
+                    pageSize: 20,
381
+                })
382
+                .then((res) => {
383
+                    this.moreLoading = false;
384
+                    if (res.data.data.length) {
385
+                        self.page++;
386
+                    } else {
387
+                        self.isHaveMore = false;
388
+                    }
389
+
390
+                    self.shopGoodsList = self.shopGoodsList.concat(
391
+                        res.data.data
392
+                    );
393
+                });
394
+        },
395
+
256 396
         // 跳转到商品详情
257 397
         jumpGoodsDetail(val) {
258 398
             const self = this;
@@ -264,10 +404,129 @@ export default {
264 404
                 },
265 405
             });
266 406
         },
407
+
408
+        jumpShopGoodsDetail(val) {
409
+            const self = this;
410
+
411
+            self.router.push({
412
+                path: "/pages/goods/detail",
413
+                query: {
414
+                    goodsId: val.id,
415
+                },
416
+            });
417
+        },
418
+
419
+        // 创建分享图
420
+        creationShare2() {
421
+            const self = this;
422
+            const ctx = uni.createCanvasContext("canvas2", self);
423
+            const good = self.orderData.orderInfo.itemOrders[0];
424
+            return new Promise((resolve) => {
425
+                self.router.getScene(self.$mp.query).then((res) => {
426
+                    res.uid = self.user.id;
427
+                    res.shopId = self.activeShop.id;
428
+
429
+                    Promise.all([
430
+                        uni.getImageInfo({
431
+                            src:
432
+                                "https://oss.ixiaokejia.com/images/common/share_bg.jpg",
433
+                        }),
434
+                        uni.getImageInfo({
435
+                            src:
436
+                                "https://oss.ixiaokejia.com/images/common/share_bg_box.png",
437
+                        }),
438
+                        uni.getImageInfo({
439
+                            src: good.imgUrl,
440
+                        }),
441
+                        uni.getImageInfo({
442
+                            src:
443
+                                "https://oss.ixiaokejia.com/images/common/share_tag1.jpg",
444
+                        }),
445
+                        uni.getImageInfo({
446
+                            src:
447
+                                "https://oss.ixiaokejia.com/images/common/share_tag2.png",
448
+                        }),
449
+                    ]).then((res) => {
450
+                        // 背景
451
+                        ctx.drawImage(res[0][1].path, 0, 0, 500, 400);
452
+
453
+                        // 标题
454
+                        ctx.setFontSize(28);
455
+                        ctx.setFillStyle("#fff");
456
+                        ctx.fillText("厂商直邮", 205, 40);
457
+                        ctx.stroke();
458
+
459
+                        ctx.setFontSize(24);
460
+                        ctx.setFillStyle("#fff");
461
+                        ctx.fillText("免费包邮,厂商快递直邮到家", 100, 75);
462
+                        ctx.stroke();
463
+
464
+                        // 背景box
465
+                        ctx.drawImage(res[1][1].path, 10, 92, 477, 292);
466
+
467
+                        // // 商品图片
468
+                        ctx.drawImage(res[2][1].path, 20, 100, 275, 275);
469
+
470
+                        // 特惠商品
471
+                        ctx.drawImage(res[3][1].path, 310, 110, 157, 46);
472
+
473
+                        ctx.setFontSize(28);
474
+                        ctx.setFillStyle("#fff");
475
+                        ctx.fillText("特惠商品", 330, 144);
476
+
477
+                        // 价格
478
+                        let price = good.price / 100;
479
+                        ctx.setFontSize(38);
480
+                        ctx.setFillStyle("#f00");
481
+                        ctx.fillText("¥" + price, 320, 220);
482
+                        ctx.stroke();
483
+
484
+                        // 价格2
485
+                        // if (self.goods.tagPrice) {
486
+                        //     let tagPrice = self.goods.tagPrice / 100;
487
+                        //     ctx.setFontSize(28);
488
+                        //     ctx.setFillStyle("#999");
489
+                        //     ctx.fillText("¥" + tagPrice, 325, 265);
490
+                        //     ctx.fillRect(
491
+                        //         328,
492
+                        //         253,
493
+                        //         (String(tagPrice).length + 1) * 20,
494
+                        //         2
495
+                        //     );
496
+                        //     ctx.stroke();
497
+                        // }
498
+
499
+                        // buy
500
+                        ctx.drawImage(res[4][1].path, 307, 300, 170, 70);
501
+
502
+                        ctx.setFontSize(28);
503
+                        ctx.setFillStyle("#fff");
504
+                        ctx.fillText("立即购买", 335, 345);
505
+
506
+                        ctx.draw();
507
+
508
+                        setTimeout(() => {
509
+                            // 生成临时路径
510
+                            uni.canvasToTempFilePath({
511
+                                canvasId: "canvas2",
512
+                                fileType: "jpg",
513
+                                success: function (res) {
514
+                                    // self.canvasShow = false
515
+                                    self.canvasforwardPath = res.tempFilePath;
516
+                                },
517
+                            });
518
+                        }, 100);
519
+                    });
520
+                });
521
+            });
522
+        },
267 523
     },
268 524
 
269 525
     // 数据计算
270 526
     computed: {
527
+        user() {
528
+            return this.$store.state.user;
529
+        },
271 530
         activeShop() {
272 531
             return this.$store.state.common.activeShop;
273 532
         },
@@ -509,10 +768,12 @@ export default {
509 768
 
510 769
     &__rmb {
511 770
         font-size: px(30);
771
+        color: #27a34f;
512 772
     }
513 773
 
514 774
     &__big {
515 775
         font-size: px(38);
776
+        color: #27a34f;
516 777
     }
517 778
 
518 779
     &__original {
@@ -567,4 +828,15 @@ export default {
567 828
         color: #666;
568 829
     }
569 830
 }
831
+.canvas__forward {
832
+    width: 500px;
833
+    height: 400px;
834
+    background-color: #fff;
835
+    visibility: hidden;
836
+    opacity: 0;
837
+    position: fixed;
838
+    left: -999px;
839
+    top: -999px;
840
+    z-index: -1;
841
+}
570 842
 </style>

+ 1 - 1
src/pages/user/index.vue

@@ -279,7 +279,7 @@
279 279
         </div>
280 280
 
281 281
         <div class="web-support">
282
-            <p class="text">0.0.982</p>
282
+            <p class="text">0.0.983</p>
283 283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
284 284
         </div>
285 285
     </div>