system-clients 3.2.85 → 3.2.87-temp
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/components/server/ResSelectGroup.vue +211 -204
- package/src/filiale/bayan/PosAdd.vue +323 -0
- package/src/filiale/bayan/PosList.vue +297 -0
- package/src/filiale/bayan/PosManage.vue +138 -0
- package/src/filiale/bayan/system.js +6 -0
- package/src/filiale/weinan/Main.vue +923 -0
- package/src/filiale/weinan/system.js +7 -0
- package/src/plugins/validation.js +15 -15
@@ -1,15 +1,15 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import Validator from 'vue-validator'
|
3
|
-
Vue.use(Validator)
|
4
|
-
//密码强度验证器(必须为为大小写字母、阿拉伯数字、字符)
|
5
|
-
Vue.validator('strongpassword', function (val) {
|
6
|
-
return /^(?:(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[^A-Za-z0-9])).*$/.test(val)
|
7
|
-
});
|
8
|
-
Vue.validator('chinesePassword', function (val) {
|
9
|
-
var testBealoon=/.*?[\u4E00-\u9FFF]+.*$/.test(val)
|
10
|
-
return !(/.*?[\u4E00-\u9FFF]+.*$/.test(val))
|
11
|
-
});
|
12
|
-
// 潜能要求8~16位数字字母组合;
|
13
|
-
Vue.validator('numbersAndLetter8to16', function (val) {
|
14
|
-
return /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?!.*(123|321|abc|cba))[a-zA-Z\d!@#$%^&*()_+-=<>?]{8,16}$/.test(val)
|
15
|
-
});
|
1
|
+
import Vue from 'vue'
|
2
|
+
import Validator from 'vue-validator'
|
3
|
+
Vue.use(Validator)
|
4
|
+
//密码强度验证器(必须为为大小写字母、阿拉伯数字、字符)
|
5
|
+
Vue.validator('strongpassword', function (val) {
|
6
|
+
return /^(?:(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[^A-Za-z0-9])).*$/.test(val)
|
7
|
+
});
|
8
|
+
Vue.validator('chinesePassword', function (val) {
|
9
|
+
var testBealoon=/.*?[\u4E00-\u9FFF]+.*$/.test(val)
|
10
|
+
return !(/.*?[\u4E00-\u9FFF]+.*$/.test(val))
|
11
|
+
});
|
12
|
+
// 潜能要求8~16位数字字母组合;
|
13
|
+
Vue.validator('numbersAndLetter8to16', function (val) {
|
14
|
+
return /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?!.*(123|321|abc|cba))[a-zA-Z\d!@#$%^&*()_+-=<>?]{8,16}$/.test(val)
|
15
|
+
});
|