From 12d22f7437573f399cb92158a8694f99eb17e234 Mon Sep 17 00:00:00 2001 From: zhangguoping Date: Fri, 9 Jan 2026 17:21:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=B2=E6=94=AF=E4=BB=98=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/templates/payPage.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/templates/payPage.html b/front/templates/payPage.html index a30a784..4a0969a 100644 --- a/front/templates/payPage.html +++ b/front/templates/payPage.html @@ -391,14 +391,14 @@ return await response.json(); }) .then((data) => { - switch (data.status) { + switch (data.data.status) { case CONFIG.PAYMENT_STATUS.PROCESSING: // 处理中 Utils.closeLoading(); Utils.showToast("支付处理中,请稍后再试"); Utils.showPaymentStatusModal(); break; case CONFIG.PAYMENT_STATUS.SUCCESS: // 支付成功 - PaymentManager.handlePaymentSuccess(data); + PaymentManager.handlePaymentSuccess(data.data); break; default: // 其他状态(待支付/失败/关闭) // 显示未查到支付状态的提示