gy-webcode2 1.0.3 → 1.0.5
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/breadcrumb.vue +6 -2
- package/components/themeConfig.vue +51 -61
- package/css/common.scss +24 -0
- package/css/layout.scss +2 -64
- package/css/modules/color.scss +1 -1
- package/css/modules/elementUI.scss +21 -5
- package/css/modules/form.scss +0 -5
- package/css/modules/table.scss +8 -19
- package/css/modules/tags.scss +49 -22
- package/package.json +1 -1
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
</div>
|
|
27
27
|
<div class="pageHeader" v-if="pageHeaderShow">
|
|
28
28
|
<div class="name">
|
|
29
|
-
<span :class="{myHover:breadcrumb_list.length}" @click="backClick()">
|
|
29
|
+
<span :class="{myHover:isBack && breadcrumb_list.length}" @click="backClick()">
|
|
30
30
|
<template v-if="breadcrumb_list.length">
|
|
31
|
-
<i class="el-icon-arrow-left"></i>
|
|
31
|
+
<i v-if="isBack" class="el-icon-arrow-left"></i>
|
|
32
32
|
{{breadcrumb_list[breadcrumb_list.length -1].name}}
|
|
33
33
|
</template>
|
|
34
34
|
<template v-else>
|
|
@@ -62,10 +62,14 @@ export default {
|
|
|
62
62
|
},
|
|
63
63
|
breadcrumb_list(){
|
|
64
64
|
return this.$store.state.menu.breadcrumb_list;
|
|
65
|
+
},
|
|
66
|
+
isBack(){
|
|
67
|
+
return this.$listeners && this.$listeners['goBack']
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
},
|
|
68
71
|
created(){
|
|
72
|
+
// console.log(this.$listeners['goBack']);
|
|
69
73
|
let breadcrumb_list = this.$store.state.menu.breadcrumb_list;
|
|
70
74
|
if(this.names.length){
|
|
71
75
|
this.names.forEach(item => {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<scrollBar left="25px" top="10px" right="25px">
|
|
3
|
+
<div class="pageStyle">
|
|
4
|
+
|
|
5
|
+
|
|
3
6
|
<div class="row1">
|
|
4
7
|
整体风格设置
|
|
5
8
|
</div>
|
|
@@ -38,6 +41,7 @@
|
|
|
38
41
|
<el-switch v-model="$store.state.breadcrumbShow"></el-switch>
|
|
39
42
|
</div>
|
|
40
43
|
</div>
|
|
44
|
+
</div>
|
|
41
45
|
|
|
42
46
|
</scrollBar>
|
|
43
47
|
</template>
|
|
@@ -148,73 +152,59 @@
|
|
|
148
152
|
|
|
149
153
|
<style lang="scss" scoped>
|
|
150
154
|
.pageStyle{
|
|
151
|
-
|
|
152
|
-
|
|
155
|
+
position: relative;
|
|
156
|
+
.row1{
|
|
157
|
+
padding: 10px 0;
|
|
158
|
+
// padding: 10px 0 5px 0;
|
|
159
|
+
font-weight: bold;
|
|
160
|
+
}
|
|
161
|
+
.stylPreview{
|
|
153
162
|
display: flex;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
margin-right:
|
|
163
|
+
padding: 10px 0;
|
|
164
|
+
.item{
|
|
165
|
+
position: relative;
|
|
166
|
+
width: 64px;
|
|
167
|
+
height: 48px;
|
|
168
|
+
margin-right: 16px;
|
|
169
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
|
|
160
170
|
cursor: pointer;
|
|
171
|
+
.iconBox{
|
|
172
|
+
display: none;
|
|
173
|
+
color: #1890ff ;
|
|
174
|
+
font-size: 20px;
|
|
175
|
+
width: 20px;
|
|
176
|
+
height: 20px;
|
|
177
|
+
position: absolute;
|
|
178
|
+
left: 30px;
|
|
179
|
+
top: 22px;
|
|
180
|
+
}
|
|
181
|
+
&.active .iconBox{
|
|
182
|
+
display: block;
|
|
183
|
+
}
|
|
161
184
|
}
|
|
162
185
|
}
|
|
163
|
-
.
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
186
|
+
.themeColors{
|
|
187
|
+
display: flex;
|
|
188
|
+
padding: 10px 0;
|
|
189
|
+
.item{
|
|
190
|
+
width: 20px;
|
|
191
|
+
height: 20px;
|
|
192
|
+
background: #000;
|
|
193
|
+
border-radius: 4px;
|
|
194
|
+
margin-right: 8px;
|
|
171
195
|
display: flex;
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
display: none;
|
|
182
|
-
color: #1890ff ;
|
|
183
|
-
font-size: 20px;
|
|
184
|
-
width: 20px;
|
|
185
|
-
height: 20px;
|
|
186
|
-
position: absolute;
|
|
187
|
-
left: 30px;
|
|
188
|
-
top: 22px;
|
|
189
|
-
}
|
|
190
|
-
&.active .iconBox{
|
|
191
|
-
display: block;
|
|
192
|
-
}
|
|
196
|
+
align-items: center;
|
|
197
|
+
justify-content: center;
|
|
198
|
+
text-align: center;
|
|
199
|
+
line-height: 20px;
|
|
200
|
+
color: #fff;
|
|
201
|
+
font-size: 12px;
|
|
202
|
+
cursor: pointer;
|
|
203
|
+
.iconBox{
|
|
204
|
+
display: none;
|
|
193
205
|
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
display: flex;
|
|
197
|
-
padding: 10px 0;
|
|
198
|
-
.item{
|
|
199
|
-
width: 20px;
|
|
200
|
-
height: 20px;
|
|
201
|
-
background: #000;
|
|
202
|
-
border-radius: 4px;
|
|
203
|
-
margin-right: 8px;
|
|
204
|
-
display: flex;
|
|
205
|
-
align-items: center;
|
|
206
|
-
justify-content: center;
|
|
207
|
-
text-align: center;
|
|
208
|
-
line-height: 20px;
|
|
209
|
-
color: #fff;
|
|
210
|
-
font-size: 12px;
|
|
211
|
-
cursor: pointer;
|
|
212
|
-
.iconBox{
|
|
213
|
-
display: none;
|
|
214
|
-
}
|
|
215
|
-
&.active .iconBox{
|
|
216
|
-
display: block;
|
|
217
|
-
}
|
|
206
|
+
&.active .iconBox{
|
|
207
|
+
display: block;
|
|
218
208
|
}
|
|
219
209
|
}
|
|
220
210
|
}
|
package/css/common.scss
CHANGED
|
@@ -59,6 +59,30 @@ a:hover{
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
.myBar_X_MAX,
|
|
63
|
+
.myBar_X_MAX .el-table--scrollable-x .el-table__body-wrapper ,
|
|
64
|
+
.myBar_X_MAX .el-table--scrollable-y .el-table__body-wrapper {
|
|
65
|
+
&::-webkit-scrollbar {
|
|
66
|
+
height: 16px;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.myBar_Y_MAX ,
|
|
70
|
+
.myBar_Y_MAX .el-table--scrollable-x .el-table__body-wrapper ,
|
|
71
|
+
.myBar_Y_MAX .el-table--scrollable-y .el-table__body-wrapper {
|
|
72
|
+
&::-webkit-scrollbar {
|
|
73
|
+
width: 16px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
.myBar_MAX ,
|
|
77
|
+
.myBar_MAX .el-table--scrollable-x .el-table__body-wrapper ,
|
|
78
|
+
.myBar_MAX .el-table--scrollable-y .el-table__body-wrapper {
|
|
79
|
+
&::-webkit-scrollbar {
|
|
80
|
+
height: 16px;
|
|
81
|
+
width: 16px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
|
|
62
86
|
.hover,.iconHover{
|
|
63
87
|
cursor: pointer;
|
|
64
88
|
@include themeColor('color','color');
|
package/css/layout.scss
CHANGED
|
@@ -215,70 +215,8 @@
|
|
|
215
215
|
}
|
|
216
216
|
.body{
|
|
217
217
|
position: relative;
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
// padding: 10px 0 5px 0;
|
|
221
|
-
font-weight: bold;
|
|
222
|
-
}
|
|
223
|
-
.stylPreview{
|
|
224
|
-
display: flex;
|
|
225
|
-
padding: 10px 0;
|
|
226
|
-
.item{
|
|
227
|
-
position: relative;
|
|
228
|
-
width: 64px;
|
|
229
|
-
height: 48px;
|
|
230
|
-
margin-right: 16px;
|
|
231
|
-
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
|
|
232
|
-
cursor: pointer;
|
|
233
|
-
.iconBox{
|
|
234
|
-
display: none;
|
|
235
|
-
color: #1890ff ;
|
|
236
|
-
font-size: 20px;
|
|
237
|
-
width: 20px;
|
|
238
|
-
height: 20px;
|
|
239
|
-
position: absolute;
|
|
240
|
-
left: 30px;
|
|
241
|
-
top: 22px;
|
|
242
|
-
}
|
|
243
|
-
&.active .iconBox{
|
|
244
|
-
display: block;
|
|
245
|
-
}
|
|
246
|
-
&.item_1{
|
|
247
|
-
background-image: url("~gy-webcode2/img/theme/pageStyle_1.png");
|
|
248
|
-
}
|
|
249
|
-
&.item_2{
|
|
250
|
-
background-image: url("~gy-webcode2/img/theme/pageStyle_2.png");
|
|
251
|
-
}
|
|
252
|
-
&.item_3{
|
|
253
|
-
background-image: url("~gy-webcode2/img/theme/pageStyle_3.png");
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
.themeColors{
|
|
258
|
-
display: flex;
|
|
259
|
-
padding: 10px 0;
|
|
260
|
-
.item{
|
|
261
|
-
width: 20px;
|
|
262
|
-
height: 20px;
|
|
263
|
-
background: #000;
|
|
264
|
-
border-radius: 4px;
|
|
265
|
-
margin-right: 8px;
|
|
266
|
-
display: flex;
|
|
267
|
-
align-items: center;
|
|
268
|
-
justify-content: center;
|
|
269
|
-
text-align: center;
|
|
270
|
-
line-height: 20px;
|
|
271
|
-
color: #fff;
|
|
272
|
-
font-size: 12px;
|
|
273
|
-
cursor: pointer;
|
|
274
|
-
.iconBox{
|
|
275
|
-
display: none;
|
|
276
|
-
}
|
|
277
|
-
&.active .iconBox{
|
|
278
|
-
display: block;
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
}
|
|
218
|
+
flex: 1;
|
|
219
|
+
height: 0;
|
|
282
220
|
}
|
|
283
221
|
|
|
284
222
|
}
|
package/css/modules/color.scss
CHANGED
|
@@ -304,18 +304,29 @@
|
|
|
304
304
|
// .el-input__inner{
|
|
305
305
|
// // border: 1px solid #aaaaaa;
|
|
306
306
|
// }
|
|
307
|
-
.el-
|
|
307
|
+
.el-input__inner{
|
|
308
308
|
border-right: none;
|
|
309
309
|
}
|
|
310
310
|
.el-input-group__append{
|
|
311
311
|
padding:0;
|
|
312
312
|
// background: #19bfa5;
|
|
313
|
-
|
|
313
|
+
@include themeColor('background-color','color');
|
|
314
|
+
color: #fff;
|
|
314
315
|
// @include themeColor('color','hover');
|
|
315
316
|
// color:#fff;
|
|
316
317
|
// border: none;
|
|
317
318
|
width:35px;
|
|
319
|
+
border-radius: 0 6px 6px 0;
|
|
318
320
|
text-align: center;
|
|
321
|
+
&:hover{
|
|
322
|
+
@include themeColor('background-color','hover');
|
|
323
|
+
}
|
|
324
|
+
&:active{
|
|
325
|
+
color: #fff !important;
|
|
326
|
+
@include themeColor('background-color','active');
|
|
327
|
+
// @include themeColor('background-color','hover',0.1);
|
|
328
|
+
// @include themeColor('color','active');
|
|
329
|
+
}
|
|
319
330
|
.el-button--default{
|
|
320
331
|
// padding: 0;
|
|
321
332
|
min-width: auto;
|
|
@@ -325,11 +336,13 @@
|
|
|
325
336
|
border-radius: 0;
|
|
326
337
|
// @include themeColor('color','color');
|
|
327
338
|
&:hover{
|
|
328
|
-
|
|
339
|
+
color: #fff !important;
|
|
340
|
+
// @include themeColor('color','hover');
|
|
329
341
|
}
|
|
330
342
|
&:active{
|
|
331
|
-
|
|
332
|
-
@include themeColor('color','
|
|
343
|
+
color: #fff !important;
|
|
344
|
+
// @include themeColor('background-color','hover',0.1);
|
|
345
|
+
// @include themeColor('color','active');
|
|
333
346
|
}
|
|
334
347
|
}
|
|
335
348
|
// border: 1px solid #aaaaaa{
|
|
@@ -423,4 +436,7 @@
|
|
|
423
436
|
padding: 16px 16px 0 16px;
|
|
424
437
|
font-weight: bold;
|
|
425
438
|
margin-bottom: 16px;
|
|
439
|
+
}
|
|
440
|
+
.el-form-item{
|
|
441
|
+
margin-bottom: 0 !important;
|
|
426
442
|
}
|
package/css/modules/form.scss
CHANGED
package/css/modules/table.scss
CHANGED
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
border-radius: 8px 0 0 0 ;
|
|
17
17
|
}
|
|
18
18
|
&:nth-last-child(2){
|
|
19
|
+
border-radius:0 ;
|
|
20
|
+
// border-right: none;
|
|
21
|
+
}
|
|
22
|
+
&:nth-last-child(1){
|
|
19
23
|
border-radius:0 8px 0 0 ;
|
|
20
24
|
}
|
|
21
25
|
}
|
|
@@ -24,6 +28,10 @@
|
|
|
24
28
|
padding-left:10px;
|
|
25
29
|
padding-right:10px;
|
|
26
30
|
}
|
|
31
|
+
|
|
32
|
+
&.el-table--mini td{
|
|
33
|
+
padding: 7px 0 !important;
|
|
34
|
+
}
|
|
27
35
|
|
|
28
36
|
}
|
|
29
37
|
.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{
|
|
@@ -113,22 +121,3 @@
|
|
|
113
121
|
}
|
|
114
122
|
}
|
|
115
123
|
|
|
116
|
-
|
|
117
|
-
.xqTable {
|
|
118
|
-
font-size: 12px;
|
|
119
|
-
table {
|
|
120
|
-
width: 100%;
|
|
121
|
-
border-left: 1px solid #cccccc;
|
|
122
|
-
border-top: 1px solid #cccccc;
|
|
123
|
-
}
|
|
124
|
-
td {
|
|
125
|
-
line-height: 18px;
|
|
126
|
-
padding: 5px;
|
|
127
|
-
border-right: 1px solid #cccccc;
|
|
128
|
-
border-bottom: 1px solid #cccccc;
|
|
129
|
-
}
|
|
130
|
-
.td_title {
|
|
131
|
-
vertical-align: top;
|
|
132
|
-
background: #f3f3f3;
|
|
133
|
-
}
|
|
134
|
-
}
|
package/css/modules/tags.scss
CHANGED
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
background: #000;
|
|
3
3
|
color: #fff;
|
|
4
4
|
border-radius: 3px;
|
|
5
|
-
padding: 2px
|
|
5
|
+
padding: 2px 4px ;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
border:1px solid #000;
|
|
8
8
|
display: inline-block;
|
|
9
9
|
line-height: 1;
|
|
10
|
+
cursor: default;
|
|
10
11
|
|
|
11
12
|
&.wide{
|
|
12
13
|
padding: 4px 8px ;
|
|
@@ -34,20 +35,25 @@
|
|
|
34
35
|
&.hong{
|
|
35
36
|
background: #ff4d50;
|
|
36
37
|
border-color: #ff4d50;
|
|
38
|
+
}
|
|
39
|
+
&.hong2{
|
|
40
|
+
background: #fff0f0;
|
|
41
|
+
border-color: #fff0f0;
|
|
42
|
+
color: #f5212d;
|
|
37
43
|
&.plain{
|
|
38
|
-
|
|
39
|
-
border-color: #ffa49f;
|
|
40
|
-
color: #f5212d;
|
|
44
|
+
border-color: #ffa19d;
|
|
41
45
|
}
|
|
42
46
|
}
|
|
47
|
+
|
|
48
|
+
|
|
43
49
|
&.lan{
|
|
44
50
|
background: #1890ff;
|
|
45
51
|
border-color: #1890ff;
|
|
46
52
|
color: #fff;
|
|
47
53
|
&.plain{
|
|
48
|
-
background: #
|
|
49
|
-
border-color: #
|
|
50
|
-
color: #
|
|
54
|
+
background: #fff;
|
|
55
|
+
border-color: #1890fe;
|
|
56
|
+
color: #1791ff;
|
|
51
57
|
}
|
|
52
58
|
}
|
|
53
59
|
&.lan2{
|
|
@@ -68,20 +74,31 @@
|
|
|
68
74
|
background: #353688;
|
|
69
75
|
border-color: #353688;
|
|
70
76
|
}
|
|
71
|
-
|
|
72
77
|
&.lan4{
|
|
78
|
+
background: #f1f1f9;
|
|
79
|
+
border-color: #f1f1f9;
|
|
80
|
+
color: #373686;
|
|
81
|
+
&.plain{
|
|
82
|
+
border-color: #a4a4ca;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.lan5{
|
|
73
87
|
background: #155bd5;
|
|
74
88
|
border-color: #155bd5;
|
|
75
89
|
}
|
|
90
|
+
&.lan6{
|
|
91
|
+
background: #edf3ff;
|
|
92
|
+
border-color: #edf3ff;
|
|
93
|
+
color: #125cd5;
|
|
94
|
+
&.plain{
|
|
95
|
+
border-color: #94b4ed;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
76
98
|
|
|
77
99
|
&.lv{
|
|
78
100
|
background: #4fc519;
|
|
79
101
|
border-color: #4fc519;
|
|
80
|
-
&.plain{
|
|
81
|
-
background: #f8ffed;
|
|
82
|
-
border-color: #b8eb8e;
|
|
83
|
-
color: #51c51a;
|
|
84
|
-
}
|
|
85
102
|
}
|
|
86
103
|
&.lv2{
|
|
87
104
|
border-color: #f8ffed;
|
|
@@ -95,10 +112,13 @@
|
|
|
95
112
|
&.huang{
|
|
96
113
|
background: #fbad15;
|
|
97
114
|
border-color: #fbad15;
|
|
115
|
+
}
|
|
116
|
+
&.huang2{
|
|
117
|
+
background: #fefbe8;
|
|
118
|
+
border-color: #fefbe8;
|
|
119
|
+
color: #ffa83f;
|
|
98
120
|
&.plain{
|
|
99
|
-
background: #fefbe8;
|
|
100
121
|
border-color: #ffe58e;
|
|
101
|
-
color: #ffa83f;
|
|
102
122
|
}
|
|
103
123
|
}
|
|
104
124
|
|
|
@@ -116,22 +136,29 @@
|
|
|
116
136
|
}
|
|
117
137
|
|
|
118
138
|
&.zi{
|
|
119
|
-
background: #
|
|
120
|
-
border-color: #
|
|
139
|
+
background: #893fd4;
|
|
140
|
+
border-color: #893fd4;
|
|
141
|
+
}
|
|
142
|
+
&.zi2{
|
|
143
|
+
background: #faeffd;
|
|
144
|
+
border-color: #faeffd;
|
|
145
|
+
color: #883ed3;
|
|
121
146
|
&.plain{
|
|
122
|
-
|
|
123
|
-
border-color: #c7a7ea;
|
|
124
|
-
color: #883ed3;
|
|
147
|
+
border-color: #c7a8ec;
|
|
125
148
|
}
|
|
126
149
|
}
|
|
127
150
|
|
|
128
151
|
&.fen{
|
|
129
152
|
background: #d42a8d;
|
|
130
153
|
border-color: #d42a8d;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
&.fen2{
|
|
157
|
+
background: #ffeefa;
|
|
158
|
+
border-color: #ffeefa;
|
|
159
|
+
color: #d5298b;
|
|
131
160
|
&.plain{
|
|
132
|
-
background: #fff0fa;
|
|
133
161
|
border-color: #ea9ecd;
|
|
134
|
-
color: #d5298b;
|
|
135
162
|
}
|
|
136
163
|
}
|
|
137
164
|
|