瀏覽代碼

Merge remote-tracking branch 'remotes/origin/master' into ios_test

hexiaojie 8 月之前
父節點
當前提交
5f68406427
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      GameClient/Assets/Game/HotUpdate/Views/RoleInfoRegister/RoleInfoRegisterView.cs

+ 4 - 4
GameClient/Assets/Game/HotUpdate/Views/RoleInfoRegister/RoleInfoRegisterView.cs

@@ -93,9 +93,9 @@ namespace GFGGame
                 return;
             }
             
-            if (account.Length < 8) //最长输入在UI编辑器中做了限制
+            if (account.Length < 6) //最长输入在UI编辑器中做了限制
             {
-                PromptController.Instance.ShowFloatTextPrompt("账号长度最少需要8位");
+                PromptController.Instance.ShowFloatTextPrompt("账号长度最少需要6位");
                 return;
             }
             
@@ -105,9 +105,9 @@ namespace GFGGame
                 return;
             }
             
-            if (password.Length < 8) //最长输入在UI编辑器中做了限制
+            if (password.Length < 6) //最长输入在UI编辑器中做了限制
             {
-                PromptController.Instance.ShowFloatTextPrompt("密码长度最少需要8位");
+                PromptController.Instance.ShowFloatTextPrompt("密码长度最少需要5位");
                 return;
             }