From 72e688f2e5f02023bfa1806f5af23f178466f40f Mon Sep 17 00:00:00 2001 From: yezian Date: Sun, 18 Feb 2024 23:42:29 +0800 Subject: [PATCH] fix bug --- app/pay/page.jsx | 2 +- app/vip/page.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pay/page.jsx b/app/pay/page.jsx index ddd0b00..9f3bb6c 100644 --- a/app/pay/page.jsx +++ b/app/pay/page.jsx @@ -11,7 +11,7 @@ export default function Pay() { const alipayBlock = () => { const base = webviewBaseRequest(); - if (base?.mid === 161) { + if (base?.b_mid === 161) { createOrder("alipay_h5"); return; } diff --git a/app/vip/page.jsx b/app/vip/page.jsx index 695f71e..96cddaa 100644 --- a/app/vip/page.jsx +++ b/app/vip/page.jsx @@ -23,7 +23,7 @@ export default function Vip() { const alipayBlock = () => { const base = webviewBaseRequest(); - if (base?.mid === 161) { + if (base?.b_mid === 161) { createOrder("alipay_h5"); return; }