测试微信h5支付
This commit is contained in:
parent
09d3c025c9
commit
7c3a3304c5
|
@ -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() {
|
|||
</div> */}
|
||||
<div className="w-full px-2">
|
||||
<button
|
||||
onClick={() => createOrder("wxpay_jsapi")}
|
||||
onClick={() => createOrder("wxpay_h5")}
|
||||
className="flex flex-row h-12 w-full items-center justify-center bg-primary rounded-full py-2"
|
||||
>
|
||||
<svg viewBox="0 0 1228 1024" width="18" height="18">
|
||||
|
|
Loading…
Reference in New Issue