system-clients 3.2.71 → 3.2.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +105 -105
- package/src/App.vue +24 -24
- package/src/components/Main.vue +87 -11
- package/src/filiale/qianneng/Login.vue +566 -0
- package/src/filiale/qianneng/ModifyPw.vue +2 -2
- package/src/filiale/qianneng/system.js +3 -0
- package/src/filiale/shiquan/Login.vue +564 -564
- package/src/plugins/validation.js +1 -1
- package/static/newStyle/1959d3b6480f4485b2e32446f762960c.jpg +0 -0
@@ -11,5 +11,5 @@ Vue.validator('chinesePassword', function (val) {
|
|
11
11
|
});
|
12
12
|
// 潜能要求8~16位数字字母组合;
|
13
13
|
Vue.validator('numbersAndLetter8to16', function (val) {
|
14
|
-
return /^(
|
14
|
+
return /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?!.*(.)(\1)+)(?!.*(123|321|abc|cba))[a-zA-Z\d!@#$%^&*()_+-=<>?]{8,16}$/.test(val)
|
15
15
|
});
|
Binary file
|