|
|
@@ -93,7 +93,11 @@ public class LoginServiceImpl extends ServiceImpl<UserMapper, User> implements I |
|
|
|
return JsonResult.error("验证码不能为空"); |
|
|
|
} |
|
|
|
// 验证码校验 |
|
|
|
if (!loginDto.getCaptcha().toLowerCase().equals(redisUtils.get(loginDto.getKey()).toString().toLowerCase())) { |
|
|
|
Object captcha = redisUtils.get(loginDto.getKey()); |
|
|
|
if (com.tuoheng.common.utils.StringUtils.isNull(captcha)) { |
|
|
|
return JsonResult.error("验证码已过期"); |
|
|
|
} |
|
|
|
if (!loginDto.getCaptcha().toLowerCase().equals(captcha.toString().toLowerCase())) { |
|
|
|
return JsonResult.error("验证码不正确"); |
|
|
|
} |
|
|
|
|