登录图形验证码验证

This commit is contained in:
禺狨 2023-03-30 09:07:41 +08:00
parent 190681c876
commit e08efb1628

View File

@ -46,6 +46,10 @@ const LoginPage: React.FC = () => {
message.error("请输入图形验证码");
return;
}
if (captchaVal.length < 4) {
message.error("图形验证码错误");
return;
}
if (loading) {
return;
}