From fd29fc9b20a6713d62be6c2b0d45318d7b5754dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Wed, 17 Sep 2025 17:08:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=96=E6=B6=88=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E6=8A=A5=E9=94=99=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/shop.js | 1 + packages/shop/groupPurchaseSubmit/index.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/api/shop.js b/api/shop.js index 87b18479..19c30a4f 100644 --- a/api/shop.js +++ b/api/shop.js @@ -20,4 +20,5 @@ export const apiArr = { mergePreorder: '/api/v2/wechat/commodity/order/preorder', // 商品订单合并预下单 goodsSearch: '/api/v2/wechat/commodity/search', // 商品搜索 + cancelPay: '/api/v2/wechat/commodity/order/cancel_pay', // 用户取消支付 } \ No newline at end of file diff --git a/packages/shop/groupPurchaseSubmit/index.vue b/packages/shop/groupPurchaseSubmit/index.vue index 00a20fc2..3a8ae57c 100644 --- a/packages/shop/groupPurchaseSubmit/index.vue +++ b/packages/shop/groupPurchaseSubmit/index.vue @@ -674,7 +674,7 @@ export default { icon: 'none' }) const params = { - order_id: orderId, + order_ids: orderId, } request(apiArr.cancelPay, "POST", params).then(res => { })