Commit 3e0a3634 authored by 技术部-任文超's avatar 技术部-任文超

修复bug:boolean 转 JsonResult

parent 453b1557
...@@ -84,7 +84,7 @@ public class CaptchaFiniteValidateAdvisor { ...@@ -84,7 +84,7 @@ public class CaptchaFiniteValidateAdvisor {
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
Map<String, String> phonePasswordMap = getHeaderParam(request); Map<String, String> phonePasswordMap = getHeaderParam(request);
if(phonePasswordMap == null || phonePasswordMap.isEmpty()){ if(phonePasswordMap == null || phonePasswordMap.isEmpty()){
return false; return JsonResult.buildErrorStateResult("用户名或密码不正确", null);
} }
// 当前用户手机号 // 当前用户手机号
String phoneNo = phonePasswordMap.get("phoneNo"); String phoneNo = phonePasswordMap.get("phoneNo");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment