cr 3 év óta
szülő
commit
ac93fd4907

+ 9 - 6
src/common/js/plugin.js

@@ -148,6 +148,7 @@ export default {
148
                             })
148
                             })
149
 
149
 
150
                             // self.orderTake(orderId, 2)
150
                             // self.orderTake(orderId, 2)
151
+                            self.getMsgTpls(orderId, 2);
151
                             api.post('/Order/Query', {
152
                             api.post('/Order/Query', {
152
                                 orderId: orderId,
153
                                 orderId: orderId,
153
                             }, { pass: true })
154
                             }, { pass: true })
@@ -171,6 +172,7 @@ export default {
171
 
172
 
172
                             if (jump) {
173
                             if (jump) {
173
                                 // self.orderTake(orderId, 1)
174
                                 // self.orderTake(orderId, 1)
175
+                                self.getMsgTpls(orderId, 1);
174
                                 router.replace({
176
                                 router.replace({
175
                                     path: '/pages/pay/result',
177
                                     path: '/pages/pay/result',
176
                                     query: {
178
                                     query: {
@@ -213,26 +215,27 @@ export default {
213
     },
215
     },
214
 
216
 
215
     // 订阅订阅消息类型,1-订单未支付,2-订单支付成功,3-直播订阅,4-售后退货/退款订阅消息,5-售后退款订阅消息,6-优惠券订阅消息
217
     // 订阅订阅消息类型,1-订单未支付,2-订单支付成功,3-直播订阅,4-售后退货/退款订阅消息,5-售后退款订阅消息,6-优惠券订阅消息
216
-    getMsgTpls(objId, type,callback) {
218
+    getMsgTpls(objId, type, callback) {
217
         api.get('/Subscription/GetMsgTpls', {
219
         api.get('/Subscription/GetMsgTpls', {
218
             type: type,
220
             type: type,
219
-        }).then(res => {
221
+        }, { pass: true }).then(res => {
220
             uni.requestSubscribeMessage({
222
             uni.requestSubscribeMessage({
221
                 tmplIds: res.data,
223
                 tmplIds: res.data,
222
-                success: () => {
224
+                success: (subRes) => {
225
+                    console.log('requestSubscribeMessage',subRes)
223
                     api.post('/Subscription/Subscribe', {
226
                     api.post('/Subscription/Subscribe', {
224
                         type: type,
227
                         type: type,
225
                         objectId: objId.toString(),
228
                         objectId: objId.toString(),
226
-                    }).then(() => {
229
+                    }, { pass: true }).then(() => {
227
                         console.log('订阅成功')
230
                         console.log('订阅成功')
228
-                        if(callback){
231
+                        if (callback) {
229
                             callback();
232
                             callback();
230
                         }
233
                         }
231
                     })
234
                     })
232
                 },
235
                 },
233
                 fail: err => {
236
                 fail: err => {
234
                     console.log(err)
237
                     console.log(err)
235
-                    if(callback){
238
+                    if (callback) {
236
                         callback();
239
                         callback();
237
                     }
240
                     }
238
                 },
241
                 },

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

@@ -86,7 +86,7 @@
86
                                 <div class="integral">
86
                                 <div class="integral">
87
                                     剩余积分
87
                                     剩余积分
88
                                     <span class="num">{{
88
                                     <span class="num">{{
89
-                                        item.points | maxNumInt(999)
89
+                                        item.points | maxNumInt(999999)
90
                                     }}</span>
90
                                     }}</span>
91
                                 </div>
91
                                 </div>
92
                             </div>
92
                             </div>

+ 42 - 30
src/pages/order/afterSaleApply.vue

@@ -340,33 +340,40 @@ export default {
340
             } else if (self.refundPriceText) {
340
             } else if (self.refundPriceText) {
341
                 self.fn.showToast("退款金额不正确");
341
                 self.fn.showToast("退款金额不正确");
342
             } else {
342
             } else {
343
-                if(this.refundType==='1' && this.orderStatus!='20'){
343
+                if (this.refundType === "1" && this.orderStatus != "20") {
344
                     return self.fn.showToast("退货必须上传图片");
344
                     return self.fn.showToast("退货必须上传图片");
345
                 }
345
                 }
346
 
346
 
347
+                let type = self.refundType === "1" ? 4 : 5;
347
                 if (self.applyId && self.type === "update") {
348
                 if (self.applyId && self.type === "update") {
348
                     // 修改申请
349
                     // 修改申请
349
-                    self.api
350
-                        .post("/AfterSale/UpdateApply", {
351
-                            id: Number(self.applyId),
352
-                            orderId: self.orderId,
353
-                            orderItemId: self.orderItemId,
354
-                            type: self.refundType === "1" ? 1 : 0,
355
-                            receivedGoods: Number(self.isReceive),
356
-                            reason: self.cause,
357
-                            refundAmount: parseInt(self.refundPrice * 100),
358
-                            remark: self.remark,
359
-                            images: self.imageList,
360
-                        })
361
-                        .then((res) => {
362
-                            self.fn.getMsgTpls(
363
-                                    res.data,
364
-                                self.refundType === "1" ? 4 : 5,
365
-                                () => {
366
-                                    self.router.back();
367
-                                }
368
-                            );
369
-                        });
350
+                    self.take(function () {
351
+                        self.api
352
+                            .post("/AfterSale/UpdateApply", {
353
+                                id: Number(self.applyId),
354
+                                orderId: self.orderId,
355
+                                orderItemId: self.orderItemId,
356
+                                type: self.refundType === "1" ? 1 : 0,
357
+                                receivedGoods: Number(self.isReceive),
358
+                                reason: self.cause,
359
+                                refundAmount: parseInt(self.refundPrice * 100),
360
+                                remark: self.remark,
361
+                                images: self.imageList,
362
+                            })
363
+                            .then((res) => {
364
+                                self.api
365
+                                    .post(
366
+                                        "/Subscription/Subscribe",
367
+                                        {
368
+                                            type: type,
369
+                                            objectId: res.data,
370
+                                        },
371
+                                        { pass: true }
372
+                                    )
373
+                                    .then(() => {});
374
+                                self.router.back();
375
+                            });
376
+                    });
370
                 } else {
377
                 } else {
371
                     // 提交申请
378
                     // 提交申请
372
                     self.take(function () {
379
                     self.take(function () {
@@ -383,13 +390,17 @@ export default {
383
                                 images: self.imageList,
390
                                 images: self.imageList,
384
                             })
391
                             })
385
                             .then((res) => {
392
                             .then((res) => {
386
-                                self.fn.getMsgTpls(
387
-                                    res.data,
388
-                                    self.refundType === "1" ? 4 : 5,
389
-                                    () => {
390
-                                        self.router.back();
391
-                                    }
392
-                                );
393
+                                self.api
394
+                                    .post(
395
+                                        "/Subscription/Subscribe",
396
+                                        {
397
+                                            type: type,
398
+                                            objectId: res.data,
399
+                                        },
400
+                                        { pass: true }
401
+                                    )
402
+                                    .then(() => {});
403
+                                self.router.back();
393
                             });
404
                             });
394
                     });
405
                     });
395
                 }
406
                 }
@@ -408,7 +419,8 @@ export default {
408
                 .then((res) => {
419
                 .then((res) => {
409
                     uni.requestSubscribeMessage({
420
                     uni.requestSubscribeMessage({
410
                         tmplIds: res.data,
421
                         tmplIds: res.data,
411
-                        complete: () => {
422
+                        complete: (res) => {
423
+                            console.log("requestSubscribeMessage", res);
412
                             callback();
424
                             callback();
413
                         },
425
                         },
414
                         fail: (err) => {
426
                         fail: (err) => {

+ 5 - 6
src/pages/pay/result.vue

@@ -196,17 +196,20 @@ export default {
196
 
196
 
197
     async onShow() {
197
     async onShow() {
198
         const self = this;
198
         const self = this;
199
+        await self.fn.init();
199
 
200
 
200
         self.type = self.$mp.query.type || "success";
201
         self.type = self.$mp.query.type || "success";
201
         self.orderId = self.$mp.query.orderId;
202
         self.orderId = self.$mp.query.orderId;
202
         self.price = self.$mp.query.price;
203
         self.price = self.$mp.query.price;
203
         self.sub = self.$mp.query.sub;
204
         self.sub = self.$mp.query.sub;
204
-        self.fn.getMsgTpls(self.orderId, self.type === "success" ? 2 : 1);
205
+        setTimeout(()=>{
206
+            
207
+        // self.fn.getMsgTpls(self.orderId, self.type === "success" ? 2 : 1);
208
+        })
205
         if (this.orderId && self.type === "success") {
209
         if (this.orderId && self.type === "success") {
206
             this.getOrderData();
210
             this.getOrderData();
207
             this.getEnablePoints();
211
             this.getEnablePoints();
208
         }
212
         }
209
-        await self.fn.init();
210
     },
213
     },
211
 
214
 
212
     onReachBottom() {
215
     onReachBottom() {
@@ -296,9 +299,6 @@ export default {
296
             const self = this;
299
             const self = this;
297
 
300
 
298
             self.page = 1;
301
             self.page = 1;
299
-            uni.showLoading({
300
-                title: "加载中...",
301
-            });
302
             self.api
302
             self.api
303
                 .get("/Product/GetHHSGProductList", {
303
                 .get("/Product/GetHHSGProductList", {
304
                     pageIndex: self.page,
304
                     pageIndex: self.page,
@@ -306,7 +306,6 @@ export default {
306
                     
306
                     
307
                 })
307
                 })
308
                 .then((res) => {
308
                 .then((res) => {
309
-                    uni.hideLoading();
310
                     uni.stopPullDownRefresh();
309
                     uni.stopPullDownRefresh();
311
                     let data = JSON.parse(res.data.list);
310
                     let data = JSON.parse(res.data.list);
312
                     if (data.length) {
311
                     if (data.length) {

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

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