升级.net8
This commit is contained in:
@ -13,6 +13,12 @@
|
||||
if (value != layui.$('input[name="F_UserPassword"]').val()) {
|
||||
return '密码不相同请重新输入!'
|
||||
}
|
||||
},
|
||||
pass: function (value, elem) {
|
||||
var EXP = /^[\S]{6,12}$/;
|
||||
if (value && !EXP.test(value)) {
|
||||
return '密码必须6到12位,且不能出现空格';
|
||||
}
|
||||
}
|
||||
});
|
||||
wcLoading.close();
|
||||
|
Reference in New Issue
Block a user