pref: 代码打包优化

This commit is contained in:
zdl
2025-10-13 19:53:13 +08:00
parent dcef2fab1a
commit cd50d718fe
20 changed files with 14957 additions and 173 deletions

View File

@@ -249,6 +249,7 @@ export default function SignInIllustration() {
if (response.ok && data.success) {
// 更新认证状态
await checkSession();
toast({
title: "登录成功",
description: "欢迎回来!",
@@ -281,8 +282,6 @@ export default function SignInIllustration() {
const authLoginType = 'phone';
if(useVerificationCode) { // 验证码登陆
credential = formData.phone;
authLoginType = 'phone';
if (!credential || !formData.verificationCode) {
toast({
title: "请填写完整信息",
@@ -294,10 +293,11 @@ export default function SignInIllustration() {
}
const result = await loginWithVerificationCode(credential, formData.verificationCode, authLoginType);
if (result.success) {
navigate("/home");
}
}else { // 密码登陆
} else { // 密码登陆
if (!credential || !formData.password) {
toast({
title: "请填写完整信息",
@@ -309,12 +309,37 @@ export default function SignInIllustration() {
}
const result = await login(credential, formData.password, authLoginType);
if (result.success) {
// ✅ 显示成功提示
toast({
title: "登录成功",
description: "欢迎回来!",
status: "success",
duration: 3000,
isClosable: true,
});
navigate("/home");
} else {
// ❌ 显示错误提示
toast({
title: "登录失败",
description: result.error || "请检查您的登录信息",
status: "error",
duration: 3000,
isClosable: true,
});
}
}
} catch (error) {
console.error('Login error:', error);
toast({
title: "登录失败",
description: error.message || "发生未预期的错误,请重试",
status: "error",
duration: 3000,
isClosable: true,
});
} finally {
setIsLoading(false);
}