Sfoglia il codice sorgente

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

tags/对接微服务前
张剑 2 anni fa
parent
commit
0e61192598
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      XHWK.WKTool/LoginWindow.xaml.cs

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

@@ -83,9 +83,9 @@ namespace XHWK.WKTool
83 83
                 MessageWindow.Show("账号未输入");
84 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 89
                 return;
90 90
             }
91 91
             if (string.IsNullOrEmpty(pobPassword.Password))

Loading…
Annulla
Salva