浏览代码

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

tags/对接微服务前
张剑 2 年前
父节点
当前提交
0e61192598
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      XHWK.WKTool/LoginWindow.xaml.cs

+ 2
- 2
XHWK.WKTool/LoginWindow.xaml.cs 查看文件

@@ -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))

正在加载...
取消
保存