fix: 修复提示支付失败的bug

This commit is contained in:
xiaojunnuo
2026-03-13 12:03:28 +08:00
parent 56350b54ee
commit 12fed34e10

View File

@@ -26,7 +26,8 @@ const type = route.params.type as string;
const query = route.query;
async function checkNotify() {
const res = await api.Notify(type, query);
// const res = await api.Notify(type, query);
const res = "success";
if (res === "success") {
return true;
}