浏览代码

修改验证提示信息

weiximei 6 年前
父节点
当前提交
4ded7f8af6

+ 1
- 1
CODE/smart-community/app-api/src/main/java/com/community/huiju/common/code/ICode.java 查看文件

@@ -32,7 +32,7 @@ public interface ICode {
32 32
         String phoneCode = (String) AppkeyCache.getCache(phone);
33 33
         if ("2468".equals(code)) {
34 34
 
35
-        }else if (StringUtils.isBlank(phoneCode)) {
35
+        }else if (StringUtils.isBlank(code)) {
36 36
             throw new WisdomException("请输入验证码!");
37 37
         } else if (!phoneCode.equals(code)) {
38 38
             throw new WisdomException("验证码错误!");