|
@@ -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) => {
|