Browse Source

修改bug

cr 3 years ago
parent
commit
ac93fd4907

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

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

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

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

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

@@ -340,33 +340,40 @@ export default {
340 340
             } else if (self.refundPriceText) {
341 341
                 self.fn.showToast("退款金额不正确");
342 342
             } else {
343
-                if(this.refundType==='1' && this.orderStatus!='20'){
343
+                if (this.refundType === "1" && this.orderStatus != "20") {
344 344
                     return self.fn.showToast("退货必须上传图片");
345 345
                 }
346 346
 
347
+                let type = self.refundType === "1" ? 4 : 5;
347 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 377
                 } else {
371 378
                     // 提交申请
372 379
                     self.take(function () {
@@ -383,13 +390,17 @@ export default {
383 390
                                 images: self.imageList,
384 391
                             })
385 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 419
                 .then((res) => {
409 420
                     uni.requestSubscribeMessage({
410 421
                         tmplIds: res.data,
411
-                        complete: () => {
422
+                        complete: (res) => {
423
+                            console.log("requestSubscribeMessage", res);
412 424
                             callback();
413 425
                         },
414 426
                         fail: (err) => {

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

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

+ 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.986</p>
282
+            <p class="text">0.0.987</p>
283 283
             <!-- <div class="num" @click="makeCall">400-629-6782</div> -->
284 284
         </div>
285 285
     </div>