From 7c3a3304c50b774375fc9c9834e5d11d3d648c07 Mon Sep 17 00:00:00 2001 From: yezian Date: Mon, 26 Feb 2024 21:16:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=BE=AE=E4=BF=A1h5=E6=94=AF?= =?UTF-8?q?=E4=BB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/pay/page.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/pay/page.jsx b/app/pay/page.jsx index f09e44b..b85f9ac 100644 --- a/app/pay/page.jsx +++ b/app/pay/page.jsx @@ -102,7 +102,7 @@ export default function Pay() { }; //如果是微信jsapi支付直接跳转到中间页 - if (type === "wxpay_jsapi") { + if (type === "wxpay_h5" && base?.b_mid !== 153) { router.push(`/pay/${encodeURIComponent(JSON.stringify(body))}`); return; } @@ -122,6 +122,7 @@ export default function Pay() { } ); const data = await response.json(); + console.log(data); if (data.ret === -1) { Toast.show({ content: data.msg, @@ -132,6 +133,9 @@ export default function Pay() { case "alipay_h5": router.push(`${data.data.alipay_h5_param_str}`); break; + case "wxpay_h5": + router.push(`${data.data.wxpay_h5_param_str}`); + break; default: router.push(`${data.data.alipay_h5_param_str}`); break; @@ -282,7 +286,7 @@ export default function Pay() { */}