修复注册密码提示问题

This commit is contained in:
eoao
2025-07-16 20:30:00 +08:00
parent a66c9cfa31
commit a6f6417a7d
+1 -1
View File
@@ -42,7 +42,7 @@ const loginService = {
throw new BizError('邮箱长度超出限制');
}
if (password.length > 6) {
if (password.length <= 6) {
throw new BizError('密码必须大于6位');
}