system-clients 3.2.16 → 3.2.19
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/SystemClient.iml +8 -8
- package/package.json +1 -1
- package/src/components/Main.vue +0 -4
- package/src/components/server/LoadData.vue +55 -55
- package/src/components/server/Login.vue +519 -519
- package/src/components/server/ModifyPw.vue +111 -111
- package/src/filiale/dongguan/Login.vue +373 -8
- package/src/filiale/dongguan/system.js +6 -6
- package/src/filiale/konggang/Login.vue +470 -470
- package/src/filiale/rizhao/Login.vue +791 -791
- package/src/filiale/tongchuan/Login.vue +528 -528
- package/src/styles/less/aofeng/login.less +367 -367
- package/src/styles/less/fonts-list.less +25 -25
- package/src/styles/less/glyphicons.less +305 -305
- package/src/styles/less/stand.less +207 -207
- package/static/newStyle/dongguan1.png +0 -0
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
@@ -1,111 +1,111 @@
|
|
1
|
-
<template>
|
2
|
-
<div>
|
3
|
-
<validator name="v">
|
4
|
-
<modal :show.sync="show" v-ref:modal backdrop="false">
|
5
|
-
<header slot="modal-header" class="modal-header">
|
6
|
-
<button type="button" class="close" @click="rest"><span>×</span></button>
|
7
|
-
<h4 class="modal-title">修改密码</h4>
|
8
|
-
</header>
|
9
|
-
<article slot="modal-body" class="modal-body modifystyle auto form-horizontal">
|
10
|
-
<div class="has-feedback form-group"
|
11
|
-
:class="{'has-warning':$v.password.required,'has-error': $v.password.required,
|
12
|
-
'has-success':!$v.password.required}">
|
13
|
-
<label for="password" class="col-sm-4 col-sm-offset-1 control-label">原始密码: </label>
|
14
|
-
<div class="col-sm-4">
|
15
|
-
<input type="password" v-model="deliver.password" class="form-control" id="password" v-validate:password="{ required: true}">
|
16
|
-
<span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.password.required"></span>
|
17
|
-
<span v-if="$v.password.required">不能为空</span>
|
18
|
-
</div>
|
19
|
-
</div>
|
20
|
-
<div class="has-feedback form-group"
|
21
|
-
:class="{'has-warning':$v.newpassword.required,'has-error':($v.newpassword.numbersAndLetter8to16 || $v.newpassword.minlength)&& !$v.newpassword.required && !$v.newpassword.chinesePassword,
|
22
|
-
'has-success': !$v.newpassword.required && !$v.newpassword.numbersAndLetter8to16&&!$v.newpassword.minlength && !$v.newpassword.chinesePassword}">
|
23
|
-
<label for="newpassword" class="col-sm-4 col-sm-offset-1 control-label">新的密码: </label>
|
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: 6,chinesePassword: true}'>
|
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
|
-
<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位数字与字母组合</span>
|
29
|
-
<span v-if="$v.newpassword.chinesePassword">密码不能包含中文</span>
|
30
|
-
</div>
|
31
|
-
</div>
|
32
|
-
<div class="has-feedback form-group"
|
33
|
-
:class="{'has-warning':$v.affirmpassword.required,'has-error':$v.affirmpassword.equalValid && !($v.affirmpassword.required),
|
34
|
-
'has-success': !$v.affirmpassword.required && !($v.affirmpassword.equalValid && !($v.affirmpassword.required))}">
|
35
|
-
<label for="affirmpassword" class="col-sm-4 col-sm-offset-1 control-label">确认密码: </label>
|
36
|
-
<div class="col-sm-4">
|
37
|
-
<input type="password" v-model="deliver.affirmpassword" class="form-control" id="affirmpassword" v-validate:affirmpassword="{ required: true, equalValid: deliver.newpassword }">
|
38
|
-
<span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.affirmpassword.required && !($v.affirmpassword.equalValid && !($v.affirmpassword.required))"></span>
|
39
|
-
<span v-if="$v.affirmpassword.required">不能为空</span>
|
40
|
-
<span v-if="$v.affirmpassword.equalValid && !($v.affirmpassword.required)">两次密码不一致 !!</span>
|
41
|
-
</div>
|
42
|
-
</div>
|
43
|
-
</article>
|
44
|
-
|
45
|
-
<footer slot="modal-footer" class="modal-footer">
|
46
|
-
<button type="button" class="btn btn-success" @click='confirm' :disabled="!$v.valid">确认</button>
|
47
|
-
<button type="button" class="btn btn-default" @click='rest'>取消</button>
|
48
|
-
</footer>
|
49
|
-
</modal>
|
50
|
-
</validator>
|
51
|
-
</div>
|
52
|
-
|
53
|
-
|
54
|
-
</template>
|
55
|
-
<script>
|
56
|
-
import co from 'co'
|
57
|
-
import validator from '../../plugins/validation';
|
58
|
-
|
59
|
-
let saveGen = function * (self) {
|
60
|
-
self.deliver.ename = self.functions.ename
|
61
|
-
// let res = yield self.$post('rs/user/entity', {data: self.deliver})
|
62
|
-
// let res = yield self.$post('rs/db/modifypassword', {data: self.deliver})
|
63
|
-
// let res = yield self.$resetpost('/rs/db/modifypwd', {data: self.deliver})
|
64
|
-
// Util.f.password = self.deliver.newpassword
|
65
|
-
let res = yield self.$resetpost('/rs/user/modifypwd', {data: self.deliver }, {resolveMsg: null,rejectMsg: null})
|
66
|
-
self.$login.f.password = self.deliver.newpassword
|
67
|
-
console.log(res.data)
|
68
|
-
if (res.data == true) {
|
69
|
-
self.$showAlert('修改成功!', 'success', 2000)
|
70
|
-
self.deliver.password = ''
|
71
|
-
self.deliver.newpassword = ''
|
72
|
-
self.deliver.affirmpassword = ''
|
73
|
-
self.show = false
|
74
|
-
} else {
|
75
|
-
self.$showMessage(res.data)
|
76
|
-
}
|
77
|
-
}
|
78
|
-
export default {
|
79
|
-
title: '系统管理-密码修改',
|
80
|
-
data () {
|
81
|
-
return {
|
82
|
-
deliver: {
|
83
|
-
password: '',
|
84
|
-
newpassword: '',
|
85
|
-
affirmpassword: ''
|
86
|
-
},
|
87
|
-
functions: this.$login.f
|
88
|
-
}
|
89
|
-
},
|
90
|
-
props: ['show'],
|
91
|
-
methods: {
|
92
|
-
confirm () {
|
93
|
-
let gen = saveGen(this)
|
94
|
-
co(gen)
|
95
|
-
},
|
96
|
-
rest () {
|
97
|
-
this.show = false
|
98
|
-
this.deliver = {password: '', newpassword: '', affirmpassword: ''}
|
99
|
-
}
|
100
|
-
}
|
101
|
-
}
|
102
|
-
</script>
|
103
|
-
<style>
|
104
|
-
/*修改密码body界面样式*/
|
105
|
-
.modifystyle {
|
106
|
-
background: #FCFEEE;
|
107
|
-
}
|
108
|
-
.modifystyle span{
|
109
|
-
color: red;
|
110
|
-
}
|
111
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<div>
|
3
|
+
<validator name="v">
|
4
|
+
<modal :show.sync="show" v-ref:modal backdrop="false">
|
5
|
+
<header slot="modal-header" class="modal-header">
|
6
|
+
<button type="button" class="close" @click="rest"><span>×</span></button>
|
7
|
+
<h4 class="modal-title">修改密码</h4>
|
8
|
+
</header>
|
9
|
+
<article slot="modal-body" class="modal-body modifystyle auto form-horizontal">
|
10
|
+
<div class="has-feedback form-group"
|
11
|
+
:class="{'has-warning':$v.password.required,'has-error': $v.password.required,
|
12
|
+
'has-success':!$v.password.required}">
|
13
|
+
<label for="password" class="col-sm-4 col-sm-offset-1 control-label">原始密码: </label>
|
14
|
+
<div class="col-sm-4">
|
15
|
+
<input type="password" v-model="deliver.password" class="form-control" id="password" v-validate:password="{ required: true}">
|
16
|
+
<span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.password.required"></span>
|
17
|
+
<span v-if="$v.password.required">不能为空</span>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
<div class="has-feedback form-group"
|
21
|
+
:class="{'has-warning':$v.newpassword.required,'has-error':($v.newpassword.numbersAndLetter8to16 || $v.newpassword.minlength)&& !$v.newpassword.required && !$v.newpassword.chinesePassword,
|
22
|
+
'has-success': !$v.newpassword.required && !$v.newpassword.numbersAndLetter8to16&&!$v.newpassword.minlength && !$v.newpassword.chinesePassword}">
|
23
|
+
<label for="newpassword" class="col-sm-4 col-sm-offset-1 control-label">新的密码: </label>
|
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: 6,chinesePassword: true}'>
|
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
|
+
<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位数字与字母组合</span>
|
29
|
+
<span v-if="$v.newpassword.chinesePassword">密码不能包含中文</span>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
<div class="has-feedback form-group"
|
33
|
+
:class="{'has-warning':$v.affirmpassword.required,'has-error':$v.affirmpassword.equalValid && !($v.affirmpassword.required),
|
34
|
+
'has-success': !$v.affirmpassword.required && !($v.affirmpassword.equalValid && !($v.affirmpassword.required))}">
|
35
|
+
<label for="affirmpassword" class="col-sm-4 col-sm-offset-1 control-label">确认密码: </label>
|
36
|
+
<div class="col-sm-4">
|
37
|
+
<input type="password" v-model="deliver.affirmpassword" class="form-control" id="affirmpassword" v-validate:affirmpassword="{ required: true, equalValid: deliver.newpassword }">
|
38
|
+
<span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.affirmpassword.required && !($v.affirmpassword.equalValid && !($v.affirmpassword.required))"></span>
|
39
|
+
<span v-if="$v.affirmpassword.required">不能为空</span>
|
40
|
+
<span v-if="$v.affirmpassword.equalValid && !($v.affirmpassword.required)">两次密码不一致 !!</span>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
</article>
|
44
|
+
|
45
|
+
<footer slot="modal-footer" class="modal-footer">
|
46
|
+
<button type="button" class="btn btn-success" @click='confirm' :disabled="!$v.valid">确认</button>
|
47
|
+
<button type="button" class="btn btn-default" @click='rest'>取消</button>
|
48
|
+
</footer>
|
49
|
+
</modal>
|
50
|
+
</validator>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
|
54
|
+
</template>
|
55
|
+
<script>
|
56
|
+
import co from 'co'
|
57
|
+
import validator from '../../plugins/validation';
|
58
|
+
|
59
|
+
let saveGen = function * (self) {
|
60
|
+
self.deliver.ename = self.functions.ename
|
61
|
+
// let res = yield self.$post('rs/user/entity', {data: self.deliver})
|
62
|
+
// let res = yield self.$post('rs/db/modifypassword', {data: self.deliver})
|
63
|
+
// let res = yield self.$resetpost('/rs/db/modifypwd', {data: self.deliver})
|
64
|
+
// Util.f.password = self.deliver.newpassword
|
65
|
+
let res = yield self.$resetpost('/rs/user/modifypwd', {data: self.deliver }, {resolveMsg: null,rejectMsg: null})
|
66
|
+
self.$login.f.password = self.deliver.newpassword
|
67
|
+
console.log(res.data)
|
68
|
+
if (res.data == true) {
|
69
|
+
self.$showAlert('修改成功!', 'success', 2000)
|
70
|
+
self.deliver.password = ''
|
71
|
+
self.deliver.newpassword = ''
|
72
|
+
self.deliver.affirmpassword = ''
|
73
|
+
self.show = false
|
74
|
+
} else {
|
75
|
+
self.$showMessage(res.data)
|
76
|
+
}
|
77
|
+
}
|
78
|
+
export default {
|
79
|
+
title: '系统管理-密码修改',
|
80
|
+
data () {
|
81
|
+
return {
|
82
|
+
deliver: {
|
83
|
+
password: '',
|
84
|
+
newpassword: '',
|
85
|
+
affirmpassword: ''
|
86
|
+
},
|
87
|
+
functions: this.$login.f
|
88
|
+
}
|
89
|
+
},
|
90
|
+
props: ['show'],
|
91
|
+
methods: {
|
92
|
+
confirm () {
|
93
|
+
let gen = saveGen(this)
|
94
|
+
co(gen)
|
95
|
+
},
|
96
|
+
rest () {
|
97
|
+
this.show = false
|
98
|
+
this.deliver = {password: '', newpassword: '', affirmpassword: ''}
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|
102
|
+
</script>
|
103
|
+
<style>
|
104
|
+
/*修改密码body界面样式*/
|
105
|
+
.modifystyle {
|
106
|
+
background: #FCFEEE;
|
107
|
+
}
|
108
|
+
.modifystyle span{
|
109
|
+
color: red;
|
110
|
+
}
|
111
|
+
</style>
|
@@ -1,12 +1,12 @@
|
|
1
1
|
<template>
|
2
|
-
<div class="syslogin">
|
2
|
+
<div class="syslogin" style="background-image: url(../static/newStyle/dongguan1.png)">
|
3
3
|
<div class="login-title" >
|
4
4
|
<div class="row auto">
|
5
5
|
<marquee style="width:80%;margin-top:25px"><span style="font-size: 1.8rem;color: white;">{{notice}}</span></marquee>
|
6
6
|
<div class="login-title-chi" style="white-space: nowrap;margin-right:-5%">
|
7
7
|
<div v-if="titleShow">
|
8
8
|
<img src="../../../static/newStyle/login-info.png"/>
|
9
|
-
<span @click="showus=true">关于我们</span>
|
9
|
+
<span style="color:#7D7D7D;font-weight: bold;" @click="showus=true">关于我们</span>
|
10
10
|
</div>
|
11
11
|
<!-- <img src="../../../static/newStyle/login-con.png"/>-->
|
12
12
|
<!-- <span>联系我们</span>-->
|
@@ -29,16 +29,16 @@
|
|
29
29
|
<p class="logofooter">(仅浏览器扫描)</p>
|
30
30
|
</div>
|
31
31
|
<!--输入框-->
|
32
|
-
<div class="loginmain" style="margin: 8% 3% 6% 73%;width: 22%;height: 48%;">
|
32
|
+
<div class="loginmain" style="margin: 8% 3% 6% 73%;width: 22%;height: 48%;background-color: #00A8E9">
|
33
33
|
<!-- <img src="../../../static/login_title1.png" alt="图片加载未完成" class="img-responsive" style="margin: 0 auto; padding-top: 150px;" /> -->
|
34
34
|
<!-- <div class="loginmain-left">-->
|
35
35
|
<!-- <img class="loginmain-left-img" src="../../../static/newStyle/login-left.png">-->
|
36
36
|
<!-- </div>-->
|
37
37
|
<div class="loginmain-right" style="float:none;padding:4% 4% 2% 4%;width:80%">
|
38
38
|
|
39
|
-
<p @click="theme()" style="white-space: nowrap;font-weight:bold;text-align: center">{{config.title}}</p>
|
39
|
+
<p @click="theme()" style="white-space: nowrap;font-weight:bold; text-align: center;font-size: 4rem;color:white">{{config.title}}</p>
|
40
40
|
|
41
|
-
<form v-show="!login">
|
41
|
+
<form v-show="!login" class="login-form">
|
42
42
|
<!-- <input type="text" placeholder="用户名" v-model="model.ename" class="usericon">-->
|
43
43
|
<div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
|
44
44
|
<img src="../../../static/newStyle/login-user.png"/>
|
@@ -85,8 +85,8 @@
|
|
85
85
|
</div>
|
86
86
|
</div>
|
87
87
|
</div>
|
88
|
-
<div class="login-foot" style="margin-top:
|
89
|
-
技术支持:东莞市伊米斯智能科技有限公司
|
88
|
+
<div class="login-foot" style="margin-top:11%;font-weight: bold;color:#7D7D7D" v-show="true">
|
89
|
+
技术支持:东莞市伊米斯智能科技有限公司 粤ICP备2022095777号-1
|
90
90
|
</div>
|
91
91
|
<div class="login-foot" v-show="$login.BAinformation">
|
92
92
|
{{{ $login.BAinformation }}}
|
@@ -311,7 +311,7 @@ export default {
|
|
311
311
|
isMac: false,
|
312
312
|
depPrompt: false,
|
313
313
|
weakPassword: false,
|
314
|
-
title: '
|
314
|
+
title: '伊米斯燃气云',
|
315
315
|
distanceLogin: false,
|
316
316
|
// 那些角色可以定时获取预约提示
|
317
317
|
isTip : false,
|
@@ -529,4 +529,369 @@ export default {
|
|
529
529
|
display:flex;
|
530
530
|
justify-content: center;
|
531
531
|
}
|
532
|
+
body {
|
533
|
+
font-family: 'Source Sans Pro', sans-serif;
|
534
|
+
color: white;
|
535
|
+
font-weight: 400;
|
536
|
+
}
|
537
|
+
|
538
|
+
body ::-webkit-input-placeholder {
|
539
|
+
/* WebKit browsers */
|
540
|
+
font-family: 'Source Sans Pro', sans-serif;
|
541
|
+
color: white;
|
542
|
+
font-weight: 400;
|
543
|
+
}
|
544
|
+
|
545
|
+
body :-moz-placeholder {
|
546
|
+
/* Mozilla Firefox 4 to 18 */
|
547
|
+
font-family: 'Source Sans Pro', sans-serif;
|
548
|
+
color: white;
|
549
|
+
opacity: 1;
|
550
|
+
font-weight: 400;
|
551
|
+
}
|
552
|
+
|
553
|
+
body ::-moz-placeholder {
|
554
|
+
/* Mozilla Firefox 19+ */
|
555
|
+
font-family: 'Source Sans Pro', sans-serif;
|
556
|
+
color: white;
|
557
|
+
opacity: 1;
|
558
|
+
font-weight: 400;
|
559
|
+
}
|
560
|
+
|
561
|
+
body :-ms-input-placeholder {
|
562
|
+
/* Internet Explorer 10+ */
|
563
|
+
font-family: 'Source Sans Pro', sans-serif;
|
564
|
+
color: white;
|
565
|
+
font-weight: 400;
|
566
|
+
}
|
567
|
+
|
568
|
+
.wrapper {
|
569
|
+
/*background: #2D83BA;
|
570
|
+
background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
|
571
|
+
background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
|
572
|
+
opacity: 0.8;*/
|
573
|
+
position: absolute;
|
574
|
+
top: 50%;
|
575
|
+
right: -60px;
|
576
|
+
width: 40%;
|
577
|
+
height: 400px;
|
578
|
+
margin-top: -150px;
|
579
|
+
overflow: hidden;
|
580
|
+
|
581
|
+
}
|
582
|
+
|
583
|
+
.wrapper.form-success .container h3 {
|
584
|
+
-webkit-transform: translateY(85px);
|
585
|
+
-ms-transform: translateY(85px);
|
586
|
+
transform: translateY(85px);
|
587
|
+
}
|
588
|
+
|
589
|
+
.container {
|
590
|
+
max-width: 350px;
|
591
|
+
margin: 0 auto;
|
592
|
+
padding: 30px 100px 50px 100px;
|
593
|
+
height: 400px;
|
594
|
+
text-align: center;
|
595
|
+
/*以下增加*/
|
596
|
+
background: #2D83BA;
|
597
|
+
background: -webkit-linear-gradient(top left, #2D83BA 0%, #2D83BA 100%);
|
598
|
+
background: linear-gradient(to bottom right, #2D83BA 0%, #2D83BA 100%);
|
599
|
+
opacity: 0.8;
|
600
|
+
}
|
601
|
+
|
602
|
+
.container h3 {
|
603
|
+
font-size: 40px;
|
604
|
+
-webkit-transition-duration: 1s;
|
605
|
+
transition-duration: 1s;
|
606
|
+
-webkit-transition-timing-function: ease-in-put;
|
607
|
+
transition-timing-function: ease-in-put;
|
608
|
+
font-weight: 200;
|
609
|
+
}
|
610
|
+
|
611
|
+
.form {
|
612
|
+
padding: 20px 0;
|
613
|
+
position: relative;
|
614
|
+
z-index: 2;
|
615
|
+
}
|
616
|
+
|
617
|
+
.form input {
|
618
|
+
-webkit-appearance: none;
|
619
|
+
-moz-appearance: none;
|
620
|
+
appearance: none;
|
621
|
+
outline: 0;
|
622
|
+
border: 1px solid #50ABE6;
|
623
|
+
background-color: #50ABE6;
|
624
|
+
width: 250px;
|
625
|
+
border-radius: 3px;
|
626
|
+
padding: 10px 15px;
|
627
|
+
margin: 0 auto 10px auto;
|
628
|
+
display: block;
|
629
|
+
text-align: center;
|
630
|
+
font-size: 18px;
|
631
|
+
color: white;
|
632
|
+
-webkit-transition-duration: 0.25s;
|
633
|
+
transition-duration: 0.25s;
|
634
|
+
font-weight: 400;
|
635
|
+
}
|
636
|
+
|
637
|
+
.form input:hover {
|
638
|
+
background-color: rgba(255, 255, 255, 0.4);
|
639
|
+
}
|
640
|
+
|
641
|
+
.form input:focus {
|
642
|
+
background-color: white;
|
643
|
+
width: 300px;
|
644
|
+
color: #53e3a6;
|
645
|
+
}
|
646
|
+
|
647
|
+
.usericon {
|
648
|
+
background-image: url(../../../static/usericon.png);
|
649
|
+
background-repeat: no-repeat;
|
650
|
+
background-size: 30px;
|
651
|
+
background-position-x: 8px;
|
652
|
+
background-position-y: 8px;
|
653
|
+
}
|
654
|
+
|
655
|
+
.psicon {
|
656
|
+
background-image: url(../../../static/psicon.png);
|
657
|
+
background-repeat: no-repeat;
|
658
|
+
background-size: 30px;
|
659
|
+
background-position-x: 8px;
|
660
|
+
background-position-y: 8px;
|
661
|
+
}
|
662
|
+
|
663
|
+
.form button {
|
664
|
+
-webkit-appearance: none;
|
665
|
+
-moz-appearance: none;
|
666
|
+
appearance: none;
|
667
|
+
outline: 0;
|
668
|
+
background-color: white;
|
669
|
+
border: 0;
|
670
|
+
padding: 10px 15px;
|
671
|
+
color: #253830;
|
672
|
+
border-radius: 3px;
|
673
|
+
width: 250px;
|
674
|
+
cursor: pointer;
|
675
|
+
font-size: 18px;
|
676
|
+
-webkit-transition-duration: 0.25s;
|
677
|
+
transition-duration: 0.25s;
|
678
|
+
}
|
679
|
+
|
680
|
+
.form button:hover {
|
681
|
+
background-color: #f5f7f9;
|
682
|
+
}
|
683
|
+
|
684
|
+
/*注册字体样式*/
|
685
|
+
.form span {
|
686
|
+
color: #fff;
|
687
|
+
display: table-footer-group;
|
688
|
+
position: absolute;
|
689
|
+
right: 10px;
|
690
|
+
margin-top: 10px;
|
691
|
+
cursor: pointer;
|
692
|
+
}
|
693
|
+
|
694
|
+
.logotitle {
|
695
|
+
color: #fff;
|
696
|
+
position: absolute;
|
697
|
+
top: 50px;
|
698
|
+
left: 50px;
|
699
|
+
font-size: 50px;
|
700
|
+
}
|
701
|
+
|
702
|
+
/*注册模态框界面样式*/
|
703
|
+
.modifystyle {
|
704
|
+
background: #FCFEEE;
|
705
|
+
}
|
706
|
+
|
707
|
+
.modifystyle div {
|
708
|
+
height: auto;
|
709
|
+
margin-bottom: 15px;
|
710
|
+
/*text-align: center;*/
|
711
|
+
/*margin-left: 20%;*/
|
712
|
+
}
|
713
|
+
|
714
|
+
/*bootstrap字体图标要手动调整,所以使用字体图标的span必须紧跟在input后面,负责会错位*/
|
715
|
+
.modifystyle div input + span {
|
716
|
+
top: 0 !important;
|
717
|
+
right: 32%;
|
718
|
+
}
|
719
|
+
|
720
|
+
.modifystyle span {
|
721
|
+
color: red;
|
722
|
+
}
|
723
|
+
|
724
|
+
/* 通告区内容 */
|
725
|
+
.notice-board {
|
726
|
+
height: auto;
|
727
|
+
position: absolute;
|
728
|
+
top: 50%;
|
729
|
+
margin-top: -150px;
|
730
|
+
margin-left: 100px;
|
731
|
+
color: #fff;
|
732
|
+
}
|
733
|
+
|
734
|
+
/*修改密码底部按钮部分样式*/
|
735
|
+
.footerbtn {
|
736
|
+
text-align: center;
|
737
|
+
padding: 15px;
|
738
|
+
}
|
739
|
+
|
740
|
+
.footerbtn button {
|
741
|
+
width: 100px;
|
742
|
+
margin-left: 20px;
|
743
|
+
}
|
744
|
+
|
745
|
+
.bg-bubbles {
|
746
|
+
position: absolute;
|
747
|
+
top: 0;
|
748
|
+
left: 0;
|
749
|
+
width: 100%;
|
750
|
+
height: 100%;
|
751
|
+
z-index: 1;
|
752
|
+
}
|
753
|
+
|
754
|
+
.bg-bubbles li {
|
755
|
+
position: absolute;
|
756
|
+
list-style: none;
|
757
|
+
display: block;
|
758
|
+
width: 40px;
|
759
|
+
height: 40px;
|
760
|
+
background-color: rgba(255, 255, 255, 0.15);
|
761
|
+
bottom: -160px;
|
762
|
+
-webkit-animation: square 25s infinite;
|
763
|
+
animation: square 25s infinite;
|
764
|
+
-webkit-transition-timing-function: linear;
|
765
|
+
transition-timing-function: linear;
|
766
|
+
}
|
767
|
+
|
768
|
+
.bg-bubbles li:nth-child(1) {
|
769
|
+
left: 10%;
|
770
|
+
}
|
771
|
+
|
772
|
+
.bg-bubbles li:nth-child(2) {
|
773
|
+
left: 20%;
|
774
|
+
width: 80px;
|
775
|
+
height: 80px;
|
776
|
+
-webkit-animation-delay: 2s;
|
777
|
+
animation-delay: 2s;
|
778
|
+
-webkit-animation-duration: 17s;
|
779
|
+
animation-duration: 17s;
|
780
|
+
}
|
781
|
+
|
782
|
+
.bg-bubbles li:nth-child(3) {
|
783
|
+
left: 25%;
|
784
|
+
-webkit-animation-delay: 4s;
|
785
|
+
animation-delay: 4s;
|
786
|
+
}
|
787
|
+
|
788
|
+
.bg-bubbles li:nth-child(4) {
|
789
|
+
left: 40%;
|
790
|
+
width: 60px;
|
791
|
+
height: 60px;
|
792
|
+
-webkit-animation-duration: 22s;
|
793
|
+
animation-duration: 22s;
|
794
|
+
background-color: rgba(255, 255, 255, 0.25);
|
795
|
+
}
|
796
|
+
|
797
|
+
.bg-bubbles li:nth-child(5) {
|
798
|
+
left: 70%;
|
799
|
+
}
|
800
|
+
|
801
|
+
.bg-bubbles li:nth-child(6) {
|
802
|
+
left: 80%;
|
803
|
+
width: 120px;
|
804
|
+
height: 120px;
|
805
|
+
-webkit-animation-delay: 3s;
|
806
|
+
animation-delay: 3s;
|
807
|
+
background-color: rgba(255, 255, 255, 0.2);
|
808
|
+
}
|
809
|
+
|
810
|
+
.bg-bubbles li:nth-child(7) {
|
811
|
+
left: 32%;
|
812
|
+
width: 160px;
|
813
|
+
height: 160px;
|
814
|
+
-webkit-animation-delay: 7s;
|
815
|
+
animation-delay: 7s;
|
816
|
+
}
|
817
|
+
|
818
|
+
.bg-bubbles li:nth-child(8) {
|
819
|
+
left: 55%;
|
820
|
+
width: 20px;
|
821
|
+
height: 20px;
|
822
|
+
-webkit-animation-delay: 15s;
|
823
|
+
animation-delay: 15s;
|
824
|
+
-webkit-animation-duration: 40s;
|
825
|
+
animation-duration: 40s;
|
826
|
+
}
|
827
|
+
|
828
|
+
.bg-bubbles li:nth-child(9) {
|
829
|
+
left: 25%;
|
830
|
+
width: 10px;
|
831
|
+
height: 10px;
|
832
|
+
-webkit-animation-delay: 2s;
|
833
|
+
animation-delay: 2s;
|
834
|
+
-webkit-animation-duration: 40s;
|
835
|
+
animation-duration: 40s;
|
836
|
+
background-color: rgba(255, 255, 255, 0.3);
|
837
|
+
}
|
838
|
+
|
839
|
+
.bg-bubbles li:nth-child(10) {
|
840
|
+
left: 90%;
|
841
|
+
width: 160px;
|
842
|
+
height: 160px;
|
843
|
+
-webkit-animation-delay: 11s;
|
844
|
+
animation-delay: 11s;
|
845
|
+
}
|
846
|
+
.logofooter{
|
847
|
+
font-size: 12px;
|
848
|
+
color:#fff;
|
849
|
+
width:150px;
|
850
|
+
margin-left: 17px;
|
851
|
+
}
|
852
|
+
.logocontent{
|
853
|
+
font-size: 14px;
|
854
|
+
color:#fff;
|
855
|
+
width:150px;
|
856
|
+
margin: 3px -15px;
|
857
|
+
}
|
858
|
+
.imglogo {
|
859
|
+
background:url(../../../static/logo.png);
|
860
|
+
background-size:100%;
|
861
|
+
}
|
862
|
+
.login-form{
|
863
|
+
border-radius: 10px;
|
864
|
+
margin: 0 -12%;
|
865
|
+
background: white;
|
866
|
+
padding: 5%;
|
867
|
+
}
|
868
|
+
.logoew {
|
869
|
+
width:120px;
|
870
|
+
height:120px;
|
871
|
+
float:right;
|
872
|
+
margin-right:8.5%;
|
873
|
+
margin-top:10px;
|
874
|
+
}
|
875
|
+
|
876
|
+
@-webkit-keyframes square {
|
877
|
+
0% {
|
878
|
+
-webkit-transform: translateY(0);
|
879
|
+
transform: translateY(0);
|
880
|
+
}
|
881
|
+
100% {
|
882
|
+
-webkit-transform: translateY(-700px) rotate(600deg);
|
883
|
+
transform: translateY(-700px) rotate(600deg);
|
884
|
+
}
|
885
|
+
}
|
886
|
+
|
887
|
+
@keyframes square {
|
888
|
+
0% {
|
889
|
+
-webkit-transform: translateY(0);
|
890
|
+
transform: translateY(0);
|
891
|
+
}
|
892
|
+
100% {
|
893
|
+
-webkit-transform: translateY(-700px) rotate(600deg);
|
894
|
+
transform: translateY(-700px) rotate(600deg);
|
895
|
+
}
|
896
|
+
}
|
532
897
|
</style>
|
@@ -1,6 +1,6 @@
|
|
1
|
-
// 分公司特殊组件页面注册
|
2
|
-
|
3
|
-
exports.specialComp = {
|
4
|
-
'home-page': (resolve) => require(['./Main'], resolve),
|
5
|
-
'login': (resolve) => require(['./Login'], resolve)
|
6
|
-
}
|
1
|
+
// 分公司特殊组件页面注册
|
2
|
+
|
3
|
+
exports.specialComp = {
|
4
|
+
'home-page': (resolve) => require(['./Main'], resolve),
|
5
|
+
'login': (resolve) => require(['./Login'], resolve)
|
6
|
+
}
|