Browse Source

限制登录账号不能超过18位

tags/对接微服务前
张剑 2 years ago
parent
commit
0e61192598
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      XHWK.WKTool/LoginWindow.xaml.cs

+ 2
- 2
XHWK.WKTool/LoginWindow.xaml.cs View File

83
                 MessageWindow.Show("账号未输入");
83
                 MessageWindow.Show("账号未输入");
84
                 return;
84
                 return;
85
             }
85
             }
86
-            if (txbAccountNumber.Text.Length > 16)
86
+            if (txbAccountNumber.Text.Length > 18)
87
             {
87
             {
88
-                MessageWindow.Show("账号长度不能高于16位");
88
+                MessageWindow.Show("账号长度不能高于18位");
89
                 return;
89
                 return;
90
             }
90
             }
91
             if (string.IsNullOrEmpty(pobPassword.Password))
91
             if (string.IsNullOrEmpty(pobPassword.Password))

Loading…
Cancel
Save