修复问题

This commit is contained in:
zhangguoping 2026-01-16 17:29:08 +08:00
parent 3985f4f744
commit c95ee510b2
1 changed files with 6 additions and 3 deletions

View File

@ -137,7 +137,7 @@
}
.toast.show {
display: block;
display: fixed;
opacity: 1;
transform: translateX(-50%) translateY(0);
}
@ -260,7 +260,7 @@
</div>
<!-- Toast提示 -->
<div id="toast" class="toast" style="display: none;"></div>
<div id="toast" class="toast hide"></div>
</body>
<script>
@ -404,6 +404,7 @@
// 显示未查到支付状态的提示
Utils.closeLoading();
Utils.showToast("未查到支付状态");
Utils.showPaymentStatusModal();
}
})
.catch((error) => {
@ -627,7 +628,9 @@
if (Utils.getQueryParam("return")) {
// 用户从支付页面返回,显示支付状态确认弹窗
Utils.closeLoading();
setTimeout(() => {
Utils.showPaymentStatusModal();
}, 500);
} else {
// 首次访问,获取支付方式
PaymentManager.fetchPaymentMethods();