|
|
@@ -89,14 +89,12 @@ public class LoginServiceImpl extends ServiceImpl<UserMapper, User> implements I |
|
|
|
return JsonResult.error("验证码KEY不能为空"); |
|
|
|
} |
|
|
|
// 验证码 |
|
|
|
if (!loginDto.getCaptcha().equals("520")) { |
|
|
|
if (StringUtils.isEmpty(loginDto.getCaptcha())) { |
|
|
|
return JsonResult.error("验证码不能为空"); |
|
|
|
} |
|
|
|
// 验证码校验 |
|
|
|
if (!loginDto.getCaptcha().toLowerCase().equals(redisUtils.get(loginDto.getKey()).toString().toLowerCase())) { |
|
|
|
return JsonResult.error("验证码不正确"); |
|
|
|
} |
|
|
|
if (StringUtils.isEmpty(loginDto.getCaptcha())) { |
|
|
|
return JsonResult.error("验证码不能为空"); |
|
|
|
} |
|
|
|
// 验证码校验 |
|
|
|
if (!loginDto.getCaptcha().toLowerCase().equals(redisUtils.get(loginDto.getKey()).toString().toLowerCase())) { |
|
|
|
return JsonResult.error("验证码不正确"); |
|
|
|
} |
|
|
|
|
|
|
|
try { |