gy-webcode2 1.0.0
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/components/bar.vue +37 -0
- package/components/breadcrumb.vue +127 -0
- package/components/javaEditor.vue +88 -0
- package/components/sqlEditor.vue +92 -0
- package/components/waterfall.vue +484 -0
- package/css/common.scss +106 -0
- package/css/layout.scss +338 -0
- package/css/login.scss +122 -0
- package/css/modules/button.scss +2 -0
- package/css/modules/color.scss +58 -0
- package/css/modules/common.scss +217 -0
- package/css/modules/elementUI.scss +426 -0
- package/css/modules/form.scss +56 -0
- package/css/modules/header.scss +342 -0
- package/css/modules/sidebar.scss +214 -0
- package/css/modules/table.scss +134 -0
- package/css/modules/tabs.scss +54 -0
- package/css/modules/tags.scss +149 -0
- package/css/modules/tree.scss +120 -0
- package/css/modules/tree_check.scss +53 -0
- package/css/theme/colors/cheng.scss +17 -0
- package/css/theme/colors/default.scss +19 -0
- package/css/theme/colors/hong.scss +17 -0
- package/css/theme/colors/huang.scss +17 -0
- package/css/theme/colors/lv.scss +17 -0
- package/css/theme/colors/qing.scss +17 -0
- package/css/theme/colors/shenaln.scss +17 -0
- package/css/theme/colors/zi.scss +18 -0
- package/css/theme/global.scss +8 -0
- package/css/theme/styles/default.scss +11 -0
- package/css/theme/styles/hailan.scss +11 -0
- package/css/theme/styles/shenlan.scss +11 -0
- package/css/theme/theme.scss +78 -0
- package/extend/axios.js +173 -0
- package/extend/formatTime.js +54 -0
- package/img/btnActive/1.png +0 -0
- package/img/btnActive/2.png +0 -0
- package/img/btnActive/3.png +0 -0
- package/img/btnActive/4.png +0 -0
- package/img/btnActive/5.png +0 -0
- package/img/btnActive/6.png +0 -0
- package/img/btnActive/7.png +0 -0
- package/img/btnActive/8.png +0 -0
- package/img/login_bg.jpg +0 -0
- package/img/login_bg2.jpg +0 -0
- package/img/login_bg2.png +0 -0
- package/img/mrtx.jpg +0 -0
- package/img/slogan.png +0 -0
- package/img/theme/pageStyle_1.png +0 -0
- package/img/theme/pageStyle_2.png +0 -0
- package/img/theme/pageStyle_3.png +0 -0
- package/index.js +17 -0
- package/jsconfig.json +19 -0
- package/package.json +15 -0
- package/plugins/jsencrypt.js +5370 -0
- package/plugins/jsencrypt.min.js +1 -0
- package/plugins/swiper-4.5.3/css/swiper.css +619 -0
- package/plugins/swiper-4.5.3/css/swiper.min.css +12 -0
- package/plugins/swiper-4.5.3/js/swiper.esm.bundle.js +7184 -0
- package/plugins/swiper-4.5.3/js/swiper.esm.js +7166 -0
- package/plugins/swiper-4.5.3/js/swiper.js +8149 -0
- package/plugins/swiper-4.5.3/js/swiper.min.js +13 -0
- package/plugins/swiper-4.5.3/js/swiper.min.js.map +1 -0
- package/scripts/$u.mixin.js +27 -0
- package/scripts/crypto.js +184 -0
- package/scripts/jsencrypt.js +180 -0
- package/scripts/md5.js +259 -0
- package/scripts/numberAnimate.js +134 -0
- package/scripts/uuid.js +33 -0
- package/updateLog.txt +0 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
body,div,p,table,tr,th,td,form,fieldset,input,textarea,blockquote,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd{margin:0;padding:0}
|
|
2
|
+
body{font-size:14px;line-height:1;text-align:left;font-family:"PingFangSC-Light","\5FAE\8F6F\96C5\9ED1","Microsoft Yahei","iconfont","Hiragino Sans GB",tahoma,arial,"\5B8B\4F53" !important; color: #333333;}
|
|
3
|
+
ul,ol,li{list-style:none;margin:0;padding:0; }
|
|
4
|
+
table{border-collapse:separate;border-spacing: 0;}
|
|
5
|
+
h1,h2,h3,h4,h5,h6,em,b{font-size:100%;font-weight:normal;font-style:normal;}
|
|
6
|
+
img{border:0;padding:0;margin:0;}
|
|
7
|
+
input{vertical-align:middle; outline: none;}
|
|
8
|
+
input,select,textarea{font-size:14px;font-family: "微软雅黑";}
|
|
9
|
+
*, :after, :before {
|
|
10
|
+
-webkit-box-sizing: border-box;
|
|
11
|
+
-moz-box-sizing: border-box;
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
}
|
|
14
|
+
pre{
|
|
15
|
+
white-space: pre-wrap;
|
|
16
|
+
word-wrap: break-word;
|
|
17
|
+
font-family: "Microsoft Yahei" !important;
|
|
18
|
+
}
|
|
19
|
+
.clear{clear:both;height:0;overflow:hidden;display:block}
|
|
20
|
+
//.clearfix:after{clear:both;height:0;overflow:hidden;display:block;visibility:hidden;content:"."}
|
|
21
|
+
//.clearfix{ overflow:hidden; zoom:1}
|
|
22
|
+
.fl{float:left}
|
|
23
|
+
.fr{float:right}
|
|
24
|
+
.tc{text-align:center !important}
|
|
25
|
+
.tl{text-align:left}
|
|
26
|
+
.tr{text-align:right}
|
|
27
|
+
.fb{font-weight:bold}
|
|
28
|
+
.cl{clear:left}
|
|
29
|
+
.pr{position:relative}
|
|
30
|
+
.pa{position:absolute}
|
|
31
|
+
.dis{display:block}
|
|
32
|
+
.undis{display:none}
|
|
33
|
+
.disline{display:inline}
|
|
34
|
+
.unline{text-decoration:none}
|
|
35
|
+
// .unline a{text-decoration:none;color:#000000}
|
|
36
|
+
.rel{ position:relative;}
|
|
37
|
+
.abs{ position:absolute;}
|
|
38
|
+
.disfl{display: block;float: left;}
|
|
39
|
+
.disfr{display: block;float: right;}
|
|
40
|
+
.disIB{display: inline-block;}
|
|
41
|
+
.oh{
|
|
42
|
+
overflow: hidden !important;
|
|
43
|
+
}
|
|
44
|
+
.oa{
|
|
45
|
+
overflow: auto !important;
|
|
46
|
+
}
|
|
47
|
+
a{color:#333333; text-decoration:none}
|
|
48
|
+
a:hover{ text-decoration: underline;}
|
|
49
|
+
a:link{
|
|
50
|
+
text-decoration: none;
|
|
51
|
+
}
|
|
52
|
+
.vt{
|
|
53
|
+
vertical-align: top;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.flex,.disFlex,.df{
|
|
57
|
+
display: flex;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.flex_column{
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column;
|
|
63
|
+
}
|
|
64
|
+
.flex_grow{
|
|
65
|
+
position: relative;
|
|
66
|
+
flex-grow: 1;
|
|
67
|
+
}
|
|
68
|
+
.flex_1{
|
|
69
|
+
flex: 1;
|
|
70
|
+
}
|
|
71
|
+
.flex_none{
|
|
72
|
+
flex: none !important;
|
|
73
|
+
}
|
|
74
|
+
.flex_wrap{
|
|
75
|
+
flex-wrap: wrap;
|
|
76
|
+
}
|
|
77
|
+
.pa0{
|
|
78
|
+
position: absolute;
|
|
79
|
+
left: 0;
|
|
80
|
+
right: 0;
|
|
81
|
+
top: 0;
|
|
82
|
+
bottom: 0;
|
|
83
|
+
}
|
|
84
|
+
.aic{
|
|
85
|
+
align-items: center;;
|
|
86
|
+
}
|
|
87
|
+
.jcb{
|
|
88
|
+
justify-content: space-between;
|
|
89
|
+
}
|
|
90
|
+
.jcc{
|
|
91
|
+
justify-content: center;
|
|
92
|
+
}
|
|
93
|
+
.jcr{
|
|
94
|
+
justify-content: flex-end;
|
|
95
|
+
}
|
|
96
|
+
.vh{
|
|
97
|
+
visibility: hidden;
|
|
98
|
+
}
|
|
99
|
+
.vs{
|
|
100
|
+
visibility: visible;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
//添加省略号
|
|
105
|
+
.ellipsis,.slh{
|
|
106
|
+
overflow: hidden;
|
|
107
|
+
text-overflow: ellipsis;
|
|
108
|
+
white-space: nowrap;
|
|
109
|
+
// max-width: 160px;
|
|
110
|
+
// max-width: 100%;
|
|
111
|
+
}
|
|
112
|
+
.cp {
|
|
113
|
+
cursor: pointer;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@mixin DianDianDian {
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
text-overflow: ellipsis;
|
|
119
|
+
white-space: nowrap;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.tmbg{
|
|
123
|
+
position: absolute;
|
|
124
|
+
left: 0;
|
|
125
|
+
right: 0;
|
|
126
|
+
top: 0;
|
|
127
|
+
bottom: 0;
|
|
128
|
+
background: #000;
|
|
129
|
+
z-index: 100;
|
|
130
|
+
filter:Alpha(opacity=0);
|
|
131
|
+
opacity: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
//padding && margin
|
|
136
|
+
//padding && margin
|
|
137
|
+
@for $i from 0 through 200 {
|
|
138
|
+
.pad_t_#{$i} { padding-top: #{$i}px !important; }
|
|
139
|
+
.pad_r_#{$i} { padding-right: #{$i}px !important; }
|
|
140
|
+
.pad_b_#{$i} { padding-bottom: #{$i}px !important; }
|
|
141
|
+
.pad_l_#{$i} { padding-left: #{$i}px !important; }
|
|
142
|
+
|
|
143
|
+
.mar_t_#{$i} { margin-top: #{$i}px !important; }
|
|
144
|
+
.mar_r_#{$i} { margin-right: #{$i}px !important; }
|
|
145
|
+
.mar_b_#{$i} { margin-bottom: #{$i}px !important; }
|
|
146
|
+
.mar_l_#{$i} { margin-left: #{$i}px !important; }
|
|
147
|
+
|
|
148
|
+
.pad_#{$i} { padding: #{$i}px !important; }
|
|
149
|
+
.mar_#{$i} { margin: #{$i}px !important; }
|
|
150
|
+
|
|
151
|
+
.fs_#{$i*2} {font-size:#{$i*2}px !important;}
|
|
152
|
+
|
|
153
|
+
.l_#{$i} {left:#{$i}px !important;}
|
|
154
|
+
.t_#{$i} {top:#{$i}px !important;}
|
|
155
|
+
.b_#{$i} {bottom:#{$i}px !important;}
|
|
156
|
+
.r_#{$i} {right:#{$i}px !important;}
|
|
157
|
+
|
|
158
|
+
.radius_#{$i} {border-radius:#{$i}px !important;}
|
|
159
|
+
}
|
|
160
|
+
//padding-right
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
// margin
|
|
164
|
+
|
|
165
|
+
.mar_0{
|
|
166
|
+
margin: 0 !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.mar_t_0 { margin-top: 0 !important; }
|
|
170
|
+
.mar_r_0 { margin-right: 0 !important; }
|
|
171
|
+
.mar_b_0 { margin-bottom:0 !important; }
|
|
172
|
+
.mar_l_0 { margin-left: 0 !important; }
|
|
173
|
+
.pad_t_0 { padding-top: 0 !important; }
|
|
174
|
+
.pad_r_0 { padding-right: 0 !important; }
|
|
175
|
+
.pad_b_0 { padding-bottom:0 !important; }
|
|
176
|
+
.pad_l_0 { padding-left: 0 !important; }
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
.opacity-enter {
|
|
188
|
+
opacity: 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.opacity-leave-to {
|
|
192
|
+
opacity: 0;
|
|
193
|
+
// transform: translateX(-50%);
|
|
194
|
+
}
|
|
195
|
+
//组件公共过度动画
|
|
196
|
+
.opacity-enter-active, .opacity-leave-active {
|
|
197
|
+
transition: all 0.3s ease;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.right-enter {
|
|
201
|
+
opacity: 0;
|
|
202
|
+
transform: translateX(2%);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.right-leave-to {
|
|
206
|
+
opacity: 0;
|
|
207
|
+
transform: translateX(2%);
|
|
208
|
+
// transform: translateX(-50%);
|
|
209
|
+
}
|
|
210
|
+
//组件公共过度动画
|
|
211
|
+
.right-enter-active, .right-leave-active {
|
|
212
|
+
transition: all 0.2s ease;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.bg_none{
|
|
216
|
+
background: none !important;
|
|
217
|
+
}
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
|
|
2
|
+
// 按钮
|
|
3
|
+
.el-button{
|
|
4
|
+
// display: inline-flex;
|
|
5
|
+
// align-items: center;
|
|
6
|
+
line-height: normal;
|
|
7
|
+
transition: all 0.2s ease;
|
|
8
|
+
color: #262626;
|
|
9
|
+
&.lan{
|
|
10
|
+
@include themeColor("color",'color');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&.el-button--default{
|
|
14
|
+
border-color: #d9d9d9;
|
|
15
|
+
color:#262626;
|
|
16
|
+
background-color: #fff;
|
|
17
|
+
&:hover{
|
|
18
|
+
@include themeColor("border-color",'hover');
|
|
19
|
+
@include themeColor("color",'hover');
|
|
20
|
+
}
|
|
21
|
+
&:active{
|
|
22
|
+
@include themeColor("border-color",'down');
|
|
23
|
+
@include themeColor("color",'down');
|
|
24
|
+
}
|
|
25
|
+
&.active{
|
|
26
|
+
@include themeColor("border-color",'active');
|
|
27
|
+
@include themeColor("background-color",'active',0.1);
|
|
28
|
+
@include themeColor("color",'active');
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
&.hui{
|
|
32
|
+
background: #f5f5f5;
|
|
33
|
+
}
|
|
34
|
+
&.dashed{
|
|
35
|
+
border-style: dashed;
|
|
36
|
+
}
|
|
37
|
+
&.btnIcon{
|
|
38
|
+
// padding: 7px 10px;
|
|
39
|
+
// padding:0 !important;
|
|
40
|
+
min-width: 32px !important;
|
|
41
|
+
height: 32px !important;
|
|
42
|
+
// color: #bfbfbf;
|
|
43
|
+
position: relative;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
&.hui{
|
|
46
|
+
color: #bfbfbf;
|
|
47
|
+
background: #fff;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.active{
|
|
51
|
+
@include themeColor('border-color','active');
|
|
52
|
+
@include themeColor('color','active');
|
|
53
|
+
&::before{
|
|
54
|
+
content: "";
|
|
55
|
+
width: 18px;
|
|
56
|
+
height: 18px;
|
|
57
|
+
position: absolute;
|
|
58
|
+
left: 0;
|
|
59
|
+
top: 0;
|
|
60
|
+
// background: url("@/assets/img/btnActive/1.png");
|
|
61
|
+
@include themeColor('background-image','button_activeImg');
|
|
62
|
+
background-size: 100% 100%;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
&.el-button--mini, &.el-button--mini.is-round{
|
|
70
|
+
font-size: 14px;
|
|
71
|
+
padding: 2px 8px;
|
|
72
|
+
min-width: 58px;
|
|
73
|
+
border-radius: 4px;
|
|
74
|
+
}
|
|
75
|
+
&.el-button--small, &.el-button--small.is-round{
|
|
76
|
+
font-size: 14px;
|
|
77
|
+
padding: 5px 10px;
|
|
78
|
+
min-width: 72px;
|
|
79
|
+
border-radius: 6px;
|
|
80
|
+
// padding: 0;
|
|
81
|
+
}
|
|
82
|
+
&.el-button--mudium, &.el-button--mudium.is-round{
|
|
83
|
+
font-size: 16px;
|
|
84
|
+
padding:9px 16px ;
|
|
85
|
+
min-width: 80px;
|
|
86
|
+
border-radius: 8px;
|
|
87
|
+
}
|
|
88
|
+
&.el-button--primary{
|
|
89
|
+
color: #FFF;
|
|
90
|
+
@include themeColor("background-color",'color');
|
|
91
|
+
@include themeColor("border-color",'color');
|
|
92
|
+
&:hover{
|
|
93
|
+
color: #fff !important;
|
|
94
|
+
@include themeColor("background-color",'hover');
|
|
95
|
+
@include themeColor("border-color",'hover');
|
|
96
|
+
}
|
|
97
|
+
&:active{
|
|
98
|
+
color: #fff !important;
|
|
99
|
+
@include themeColor("background-color",'down');
|
|
100
|
+
@include themeColor("border-color",'down');
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
// 输入框
|
|
105
|
+
.el-input__inner{
|
|
106
|
+
border-color: #d9d9d9;
|
|
107
|
+
border-radius: 6px;
|
|
108
|
+
transition: all 0.2s ease;
|
|
109
|
+
&:hover{
|
|
110
|
+
@include themeColor("border-color",'hover');
|
|
111
|
+
}
|
|
112
|
+
&:focus{
|
|
113
|
+
@include themeColor("border-color",'hover');
|
|
114
|
+
@include themeColor("--box-shadow-color",'hover',0.2);
|
|
115
|
+
box-shadow:0 0 0 2px var(--box-shadow-color);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
.el-textarea__inner:focus{
|
|
119
|
+
@include themeColor("border-color",'hover');
|
|
120
|
+
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.el-input-number__decrease:hover, .el-input-number__increase:hover{
|
|
124
|
+
@include themeColor("color",'hover');
|
|
125
|
+
}
|
|
126
|
+
.el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled), .el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled){
|
|
127
|
+
@include themeColor("border-color",'hover');
|
|
128
|
+
}
|
|
129
|
+
// 下拉框
|
|
130
|
+
.el-input.is-focus .el-input__inner{
|
|
131
|
+
@include themeColor("border-color",'hover');
|
|
132
|
+
}
|
|
133
|
+
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected{
|
|
134
|
+
@include themeColor("color",'color');
|
|
135
|
+
}
|
|
136
|
+
.el-select-dropdown__item.selected{
|
|
137
|
+
@include themeColor("color",'color');
|
|
138
|
+
}
|
|
139
|
+
//开关
|
|
140
|
+
.el-switch__core{
|
|
141
|
+
transform: scale(0.8)
|
|
142
|
+
}
|
|
143
|
+
.el-switch.is-checked .el-switch__core{
|
|
144
|
+
@include themeColor("border-color",'color');
|
|
145
|
+
@include themeColor("background-color",'color');
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// 日期控件
|
|
149
|
+
// .el-month-table td .cell:hover{
|
|
150
|
+
// @include themeColor("color",'hover');
|
|
151
|
+
// }
|
|
152
|
+
.time-select-item.selected:not(.disabled){
|
|
153
|
+
@include themeColor("color",'active');
|
|
154
|
+
}
|
|
155
|
+
.el-month-table td.today .cell{
|
|
156
|
+
@include themeColor("color",'color');
|
|
157
|
+
}
|
|
158
|
+
.el-month-table td.current:not(.disabled) .cell{
|
|
159
|
+
@include themeColor("color",'active');
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.el-date-table td.current:not(.disabled) span,
|
|
163
|
+
.el-date-table td.end-date span, .el-date-table td.start-date span
|
|
164
|
+
{
|
|
165
|
+
@include themeColor("background-color",'active');
|
|
166
|
+
}
|
|
167
|
+
.el-date-table td.available:hover{
|
|
168
|
+
@include themeColor("color",'hover');
|
|
169
|
+
}
|
|
170
|
+
.el-date-table td.in-range div, .el-date-table td.in-range div:hover, .el-date-table.is-week-mode .el-date-table__row.current div, .el-date-table.is-week-mode .el-date-table__row:hover div{
|
|
171
|
+
@include themeColor("background-color",'active',0.1);
|
|
172
|
+
}
|
|
173
|
+
.el-picker-panel__shortcut:hover{
|
|
174
|
+
@include themeColor("color",'hover');
|
|
175
|
+
}
|
|
176
|
+
.el-date-table td.today span{
|
|
177
|
+
@include themeColor("color",'color');
|
|
178
|
+
}
|
|
179
|
+
.el-date-table td.today.start-date span, .el-date-table td.today.end-date span{
|
|
180
|
+
color: #fff;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.el-year-table td .cell:hover, .el-year-table td.current:not(.disabled) .cell{
|
|
184
|
+
@include themeColor("color",'active');
|
|
185
|
+
}
|
|
186
|
+
.el-year-table td.today .cell{
|
|
187
|
+
@include themeColor("color",'hover');
|
|
188
|
+
}
|
|
189
|
+
.el-date-table td.selected span{
|
|
190
|
+
@include themeColor("background-color",'active');
|
|
191
|
+
}
|
|
192
|
+
// 单选
|
|
193
|
+
.el-radio{
|
|
194
|
+
margin-right: 16px;
|
|
195
|
+
}
|
|
196
|
+
.el-radio__input.is-checked .el-radio__inner{
|
|
197
|
+
@include themeColor("background-color",'active');
|
|
198
|
+
@include themeColor("border-color",'active');
|
|
199
|
+
|
|
200
|
+
}
|
|
201
|
+
.el-radio__input.is-checked+.el-radio__label{
|
|
202
|
+
@include themeColor("color",'active');
|
|
203
|
+
|
|
204
|
+
}
|
|
205
|
+
.el-radio-button__inner:hover{
|
|
206
|
+
@include themeColor("color",'hover');
|
|
207
|
+
}
|
|
208
|
+
.el-radio-button__orig-radio:checked+.el-radio-button__inner{
|
|
209
|
+
color: #FFF;
|
|
210
|
+
@include themeColor("background-color",'active');
|
|
211
|
+
@include themeColor("border-color",'active');
|
|
212
|
+
@include themeColor("--box-shadow-color",'active');
|
|
213
|
+
box-shadow: -1px 0 0 0 var(--box-shadow-color);
|
|
214
|
+
}
|
|
215
|
+
.el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled){
|
|
216
|
+
@include themeColor("--box-shadow-color",'hover',0.5);
|
|
217
|
+
box-shadow: 0 0 2px 2px var(--box-shadow-color);
|
|
218
|
+
}
|
|
219
|
+
.el-radio-group.plain{
|
|
220
|
+
.el-radio-button__orig-radio:checked+.el-radio-button__inner{
|
|
221
|
+
@include themeColor("color",'active');
|
|
222
|
+
background: #fff;
|
|
223
|
+
@include themeColor("border-color",'active');
|
|
224
|
+
@include themeColor("--box-shadow-color",'active');
|
|
225
|
+
box-shadow: -1px 0 0 0 var(--box-shadow-color);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
// 复选框
|
|
229
|
+
.el-checkbox__input.is-checked+.el-checkbox__label{
|
|
230
|
+
@include themeColor("color",'active');
|
|
231
|
+
}
|
|
232
|
+
.el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner{
|
|
233
|
+
@include themeColor("background-color",'active');
|
|
234
|
+
@include themeColor("border-color",'active');
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// 分页
|
|
238
|
+
.el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li{
|
|
239
|
+
color: #262626;
|
|
240
|
+
}
|
|
241
|
+
.el-pagination.is-background .el-pager li:not(.disabled):hover{
|
|
242
|
+
@include themeColor("color",'active');
|
|
243
|
+
}
|
|
244
|
+
.el-pagination.is-background .el-pager li:not(.disabled).active{
|
|
245
|
+
background: #fff;
|
|
246
|
+
@include themeColor("color",'active');
|
|
247
|
+
border: 1px solid ;
|
|
248
|
+
border-radius: 4px;
|
|
249
|
+
@include themeColor("border-color",'active');
|
|
250
|
+
|
|
251
|
+
}
|
|
252
|
+
// 加载中
|
|
253
|
+
.el-loading-spinner .path{
|
|
254
|
+
@include themeColor("stroke",'active');
|
|
255
|
+
}
|
|
256
|
+
//单选按钮组
|
|
257
|
+
// .el-radio-button__inner:hover{
|
|
258
|
+
// color: #19bfa5;
|
|
259
|
+
// }
|
|
260
|
+
// .el-radio-button__orig-radio:checked+.el-radio-button__inner{
|
|
261
|
+
// background-color: #19bfa5;
|
|
262
|
+
// border-color: #19bfa5;
|
|
263
|
+
// }
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
//textarea
|
|
270
|
+
// .el-textarea__inner:focus{
|
|
271
|
+
// border-color: #19bfa5;
|
|
272
|
+
// }
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
//复选框check
|
|
276
|
+
// .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner{
|
|
277
|
+
// background-color: #19bfa5;
|
|
278
|
+
// border-color: #19bfa5;
|
|
279
|
+
// }
|
|
280
|
+
// .el-checkbox__input.is-checked+.el-checkbox__label{
|
|
281
|
+
// color: #19bfa5;
|
|
282
|
+
// }
|
|
283
|
+
.el-checkbox__label{
|
|
284
|
+
padding-left: 5px;
|
|
285
|
+
}
|
|
286
|
+
//table操作popover
|
|
287
|
+
.caozuo_popover{
|
|
288
|
+
min-width: 60px;
|
|
289
|
+
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.el-form-item__content{
|
|
293
|
+
line-height: unset;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.el-input{
|
|
297
|
+
input{
|
|
298
|
+
display: block;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
//搜索按钮框
|
|
302
|
+
.input_search{
|
|
303
|
+
width: 210px;
|
|
304
|
+
// .el-input__inner{
|
|
305
|
+
// // border: 1px solid #aaaaaa;
|
|
306
|
+
// }
|
|
307
|
+
.el-input-group--append .el-input__inner, .el-input-group__prepend{
|
|
308
|
+
border-right: none;
|
|
309
|
+
}
|
|
310
|
+
.el-input-group__append{
|
|
311
|
+
padding:0;
|
|
312
|
+
// background: #19bfa5;
|
|
313
|
+
// @include themeColor('background-color','hover',0.1);
|
|
314
|
+
// @include themeColor('color','hover');
|
|
315
|
+
// color:#fff;
|
|
316
|
+
// border: none;
|
|
317
|
+
width:35px;
|
|
318
|
+
text-align: center;
|
|
319
|
+
.el-button--default{
|
|
320
|
+
// padding: 0;
|
|
321
|
+
min-width: auto;
|
|
322
|
+
width: 100%;
|
|
323
|
+
height: 100%;
|
|
324
|
+
border: none;
|
|
325
|
+
border-radius: 0;
|
|
326
|
+
// @include themeColor('color','color');
|
|
327
|
+
&:hover{
|
|
328
|
+
@include themeColor('color','hover');
|
|
329
|
+
}
|
|
330
|
+
&:active{
|
|
331
|
+
@include themeColor('background-color','hover',0.1);
|
|
332
|
+
@include themeColor('color','active');
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
// border: 1px solid #aaaaaa{
|
|
336
|
+
// left:none
|
|
337
|
+
// };
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
.el-button--primary.is-disabled, .el-button--primary.is-disabled:active, .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:hover{
|
|
341
|
+
color: #C0C4CC;
|
|
342
|
+
cursor: not-allowed;
|
|
343
|
+
background-image: none;
|
|
344
|
+
background-color: #FFF;
|
|
345
|
+
border-color: #EBEEF5;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
//月份范围选择器,“至”字宽度调整
|
|
353
|
+
.el-date-editor .el-range-separator{
|
|
354
|
+
// width: 6%;
|
|
355
|
+
width: 24px;
|
|
356
|
+
padding: 0;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.el-checkbox{
|
|
360
|
+
margin-right: 10px;
|
|
361
|
+
}
|
|
362
|
+
.el-dialog{
|
|
363
|
+
border-radius: 5px;
|
|
364
|
+
}
|
|
365
|
+
.el-dialog__title{
|
|
366
|
+
font-size: 16px;
|
|
367
|
+
}
|
|
368
|
+
.el-dialog__header{
|
|
369
|
+
padding: 0 16px;
|
|
370
|
+
}
|
|
371
|
+
.el-dialog__header,
|
|
372
|
+
.dialog_title{
|
|
373
|
+
text-align:left;
|
|
374
|
+
|
|
375
|
+
height: 50px;
|
|
376
|
+
line-height: 50px;
|
|
377
|
+
color: #0e2626;
|
|
378
|
+
font-weight: bold;
|
|
379
|
+
border-bottom: 1px solid #f0f0f0;
|
|
380
|
+
font-size: 16px;
|
|
381
|
+
// background: #f4f4f4;
|
|
382
|
+
border-radius: 5px 5px 0 0;
|
|
383
|
+
}
|
|
384
|
+
.el-dialog__body{
|
|
385
|
+
padding:10px 16px;
|
|
386
|
+
// padding: 0 16px;
|
|
387
|
+
}
|
|
388
|
+
.el-dialog__footer{
|
|
389
|
+
border-top: 1px solid #f0f0f0;
|
|
390
|
+
margin-top: 10px;
|
|
391
|
+
}
|
|
392
|
+
.el-form-item--mini.el-form-item, .el-form-item--small.el-form-item{
|
|
393
|
+
margin-bottom: 10px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.el-input__suffix{
|
|
397
|
+
line-height: 28px;
|
|
398
|
+
}
|
|
399
|
+
.el-scrollbar__thumb{
|
|
400
|
+
background-color: #dbdee5;
|
|
401
|
+
}
|
|
402
|
+
.el-tooltip__popper{
|
|
403
|
+
max-width: 40%;
|
|
404
|
+
}
|
|
405
|
+
//dialog 关闭按钮
|
|
406
|
+
.el-dialog__headerbtn{
|
|
407
|
+
top: 15px;
|
|
408
|
+
right: 15px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.el-dropdown-menu__item:focus, .el-dropdown-menu__item:not(.is-disabled):hover{
|
|
412
|
+
@include themeColor('background-color','hover',0.1);
|
|
413
|
+
@include themeColor('color','hover');
|
|
414
|
+
}
|
|
415
|
+
.el-popover{
|
|
416
|
+
min-width: 60px;
|
|
417
|
+
// padding: 5px 0;
|
|
418
|
+
// padding: 16px;
|
|
419
|
+
padding: 0;
|
|
420
|
+
}
|
|
421
|
+
.el-popover__title{
|
|
422
|
+
font-size: 14px;
|
|
423
|
+
padding: 16px 16px 0 16px;
|
|
424
|
+
font-weight: bold;
|
|
425
|
+
margin-bottom: 16px;
|
|
426
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
|
|
2
|
+
.formBox{
|
|
3
|
+
display:flex;
|
|
4
|
+
.form_item{
|
|
5
|
+
flex: 1;
|
|
6
|
+
}
|
|
7
|
+
.form_item{
|
|
8
|
+
margin-right: 16px;
|
|
9
|
+
}
|
|
10
|
+
.form_item:last-child{
|
|
11
|
+
margin-right: 0;
|
|
12
|
+
}
|
|
13
|
+
// .form_item:nth-of-type(odd){
|
|
14
|
+
// margin-right: 10px;
|
|
15
|
+
// }
|
|
16
|
+
// .form_item:nth-of-type(even){
|
|
17
|
+
// margin-left: 10px;
|
|
18
|
+
// }
|
|
19
|
+
}
|
|
20
|
+
.form_item{
|
|
21
|
+
// font-size: 12px;
|
|
22
|
+
.title{
|
|
23
|
+
// margin-bottom: 5px;
|
|
24
|
+
height: 32px;
|
|
25
|
+
line-height: 32px;
|
|
26
|
+
// text-align: right;
|
|
27
|
+
}
|
|
28
|
+
.content{
|
|
29
|
+
min-height: 32px;
|
|
30
|
+
line-height: 32px;
|
|
31
|
+
.el-select{
|
|
32
|
+
// display:block;
|
|
33
|
+
width: 100%;
|
|
34
|
+
}
|
|
35
|
+
// ::v-deep {
|
|
36
|
+
.el-form-item{
|
|
37
|
+
margin-bottom:17px;
|
|
38
|
+
}
|
|
39
|
+
// }
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
.form_item[layout='left']{
|
|
43
|
+
display:flex;
|
|
44
|
+
// font-size: 12px;
|
|
45
|
+
line-height: 32px;
|
|
46
|
+
.title{
|
|
47
|
+
width: 100px;
|
|
48
|
+
text-align: right;
|
|
49
|
+
// padding-right: 15px;
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
.content{
|
|
53
|
+
flex: 1;
|
|
54
|
+
// line-height: 30px;
|
|
55
|
+
}
|
|
56
|
+
}
|