Commit 5c4e5cb275faa80b791fad204ec2387e315472db
1 parent
55c0433e
解决取消订单问题
Showing
1 changed file
with
4 additions
and
4 deletions
src/pages/myGiftBox/myGiftBox.vue
| ... | ... | @@ -704,10 +704,10 @@ export default { |
| 704 | 704 | // 安卓支付成功回调 |
| 705 | 705 | payFinish() { |
| 706 | 706 | // 检测是否已支付 |
| 707 | - this.cancelorder(this.orderOperation.item); | |
| 707 | + this.AndroidCancelorder(this.orderOperation.item); | |
| 708 | 708 | }, |
| 709 | 709 | // 安卓调用支付后检测是否已支付 |
| 710 | - cancelorder(item) { | |
| 710 | + AndroidCancelorder(item) { | |
| 711 | 711 | // 加载中提示 |
| 712 | 712 | Indicator.open("加载中..."); |
| 713 | 713 | |
| ... | ... | @@ -717,7 +717,7 @@ export default { |
| 717 | 717 | { |
| 718 | 718 | orderId: item.orderid // 订单编号 |
| 719 | 719 | }, |
| 720 | - this.cancelorderCallback, | |
| 720 | + this.AndroidCancelorderCallback, | |
| 721 | 721 | { |
| 722 | 722 | method: "post", |
| 723 | 723 | item |
| ... | ... | @@ -729,7 +729,7 @@ export default { |
| 729 | 729 | * @param {object} res [服务器返回数据] |
| 730 | 730 | * @param {object} ext [扩展参数] |
| 731 | 731 | */ |
| 732 | - cancelorderCallback(res, ext) { | |
| 732 | + AndroidCancelorderCallback(res, ext) { | |
| 733 | 733 | // 加载完成 |
| 734 | 734 | Indicator.close(); |
| 735 | 735 | // 返回处理 | ... | ... |