修复注册密码提示问题

This commit is contained in:
eoao
2025-07-16 20:30:00 +08:00
parent 254325431b
commit 12e39c5f9c

View File

@@ -42,7 +42,7 @@ const loginService = {
throw new BizError('邮箱长度超出限制');
}
if (password.length > 6) {
if (password.length <= 6) {
throw new BizError('密码必须大于6位');
}