diff --git a/web/src/components/topup/index.jsx b/web/src/components/topup/index.jsx index 4ff05a254..7618d7778 100644 --- a/web/src/components/topup/index.jsx +++ b/web/src/components/topup/index.jsx @@ -465,9 +465,8 @@ const TopUp = () => { }; useEffect(() => { - if (!userState?.user?.id) { - getUserQuota().then(); - } + // 始终获取最新用户数据,确保余额等统计信息准确 + getUserQuota().then(); setTransferAmount(getQuotaPerUnit()); }, []);