system-clients 3.2.74 → 3.2.82
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/Main.vue +819 -923
- package/src/components/server/Login.vue +1 -3
- package/src/filiale/qianneng/ModifyPw.vue +2 -2
- package/src/filiale/qianneng/system.js +0 -3
- package/src/plugins/validation.js +1 -1
- package/src/stores/AppData.js +1 -1
- package/src/styles/less/aofeng/standard.less +4 -4
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/8.0.2/checksums/checksums.lock +0 -0
- package/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.0.2/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.0.2/fileChanges/last-build.bin +0 -0
- package/.gradle/8.0.2/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.0.2/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/src/filiale/qianneng/Login.vue +0 -566
- package/src/filiale/shiquan/Login.vue +0 -564
- package/src/filiale/shiquan/system.js +0 -8
- package/static/newStyle/1959d3b6480f4485b2e32446f762960c.jpg +0 -0
@@ -85,7 +85,7 @@
|
|
85
85
|
技术支持:西安奥枫软件有限公司
|
86
86
|
</div>
|
87
87
|
<div class="login-foot" v-show="$login.BAinformation">
|
88
|
-
{{
|
88
|
+
{{ $login.BAinformation }}
|
89
89
|
</div>
|
90
90
|
|
91
91
|
<modal v-if="depPromptShow" :show.sync="depPromptShow" :backdrop="false" v-ref:modal >
|
@@ -314,8 +314,6 @@ export default {
|
|
314
314
|
msgRole : '预约处理人员',
|
315
315
|
// 定时获取提示间隔 单位:分钟
|
316
316
|
times: 25,
|
317
|
-
approve: false, // 是否获取审核提醒
|
318
|
-
approveTimes: 1 // 审核时间见间隔
|
319
317
|
},
|
320
318
|
titleShow: true, //标题显示
|
321
319
|
otherLogin:false,
|
@@ -22,10 +22,10 @@
|
|
22
22
|
'has-success': !$v.newpassword.required && !$v.newpassword.numbersAndLetter8to16&&!$v.newpassword.minlength && !$v.newpassword.chinesePassword}">
|
23
23
|
<label for="newpassword" class="col-sm-4 col-sm-offset-1 control-label">新的密码: </label>
|
24
24
|
<div class="col-sm-4">
|
25
|
-
<input type="password" v-model="deliver.newpassword" class="form-control" id="newpassword" v-validate:newpassword='{required:true, numbersAndLetter8to16: true, minlength:
|
25
|
+
<input type="password" v-model="deliver.newpassword" class="form-control" id="newpassword" v-validate:newpassword='{required:true, numbersAndLetter8to16: true, minlength: 6,chinesePassword: true}'>
|
26
26
|
<span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.newpassword.required && !$v.newpassword.minlength && !($v.newpassword.numbersAndLetter8to16 && !($v.newpassword.required)) && !($v.newpassword.chinesePassword) "></span>
|
27
27
|
<span v-if="$v.newpassword.required">不能为空</span>
|
28
|
-
<span v-if="($v.newpassword.numbersAndLetter8to16||$v.newpassword.minlength) && !($v.newpassword.required&&$v.newpassword.minlength)">密码必须是8~16
|
28
|
+
<span v-if="($v.newpassword.numbersAndLetter8to16||$v.newpassword.minlength) && !($v.newpassword.required&&$v.newpassword.minlength)">密码必须是8~16位数字与字母组合</span>
|
29
29
|
<span v-if="$v.newpassword.chinesePassword">密码不能包含中文</span>
|
30
30
|
</div>
|
31
31
|
</div>
|
@@ -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 /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/.test(val)
|
15
15
|
});
|
package/src/stores/AppData.js
CHANGED
@@ -40,10 +40,10 @@
|
|
40
40
|
.fonttitle(@i - 1, @type, @colortype);
|
41
41
|
}
|
42
42
|
|
43
|
-
.fonttitle(40, bold, title);
|
44
|
-
.fonttitle(40, bold, body);
|
45
|
-
.fonttitle(40, bold, title1);
|
46
|
-
.fonttitle(40, bold, button);
|
43
|
+
.fonttitle(40, 'bold', 'title');
|
44
|
+
.fonttitle(40, 'bold', 'body');
|
45
|
+
.fonttitle(40, 'bold', 'title1');
|
46
|
+
.fonttitle(40, 'bold', 'button');
|
47
47
|
.fonttitle(40, bold, blue);
|
48
48
|
.fonttitle(40, normal, title);
|
49
49
|
.fonttitle(40, normal, body);
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|