ソースを参照

修改验证提示信息

weiximei 6 年 前
コミット
4ded7f8af6
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      CODE/smart-community/app-api/src/main/java/com/community/huiju/common/code/ICode.java

+ 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("验证码错误!");