gw-gis-standard-gpage-ui-vue3 1.1.91 → 1.1.93
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/app.scss +169 -187
- package/gw-gis-standard-gpage-ui-vue3.js +8012 -8115
- package/gw-gis-standard-gpage-ui-vue3.umd.cjs +21 -21
- package/package.json +1 -1
- package/style.css +1 -1
package/app.scss
CHANGED
|
@@ -15,7 +15,6 @@ html, body {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
// 设置页面宽高
|
|
18
|
-
|
|
19
18
|
#app {
|
|
20
19
|
width: 100%;
|
|
21
20
|
height: 100%;
|
|
@@ -48,9 +47,7 @@ html, body {
|
|
|
48
47
|
flex: 1;
|
|
49
48
|
box-sizing: border-box;
|
|
50
49
|
overflow: auto;
|
|
51
|
-
background-color: var(--mainBackgroundColor);
|
|
52
|
-
//padding: 10px;
|
|
53
|
-
//padding: 0px 0px 0 10px;
|
|
50
|
+
//background-color: var(--mainBackgroundColor);
|
|
54
51
|
display: flex;
|
|
55
52
|
flex-direction: column;
|
|
56
53
|
}
|
|
@@ -59,7 +56,7 @@ html, body {
|
|
|
59
56
|
.footer {
|
|
60
57
|
font-size: 16px;
|
|
61
58
|
line-height: 50px;
|
|
62
|
-
color: var(--
|
|
59
|
+
//color: var(--gwCommonTextColor);
|
|
63
60
|
}
|
|
64
61
|
|
|
65
62
|
// ------滚动条-------
|
|
@@ -109,8 +106,6 @@ html, body {
|
|
|
109
106
|
height: 100%;
|
|
110
107
|
display: flex;
|
|
111
108
|
flex-direction: column;
|
|
112
|
-
//transition: .3s;
|
|
113
|
-
//transition: .1s;
|
|
114
109
|
position: relative;
|
|
115
110
|
}
|
|
116
111
|
|
|
@@ -137,21 +132,15 @@ html, body {
|
|
|
137
132
|
//------------------element ui---
|
|
138
133
|
|
|
139
134
|
// 设置drop 下拉
|
|
140
|
-
|
|
141
|
-
color: var(--headerBackground) !important;
|
|
142
|
-
}
|
|
135
|
+
//.el-dropdown-menu__item:hover {
|
|
136
|
+
// color: var(--headerBackground) !important;
|
|
137
|
+
//}
|
|
143
138
|
|
|
144
139
|
// 修改表单的勾选的样式
|
|
145
140
|
.el-table__body-wrapper .el-table-column--selection > .cell, .el-table__header-wrapper .el-table-column--selection > .cell {
|
|
146
141
|
display: flex;
|
|
147
142
|
}
|
|
148
143
|
|
|
149
|
-
// 修改表单的高度
|
|
150
|
-
.el-form-item {
|
|
151
|
-
//margin-bottom: 10px;
|
|
152
|
-
//margin-bottom: 15px !important;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
144
|
// 修改element头部高度
|
|
156
145
|
.el-table .el-table__cell {
|
|
157
146
|
padding: 0 !important;
|
|
@@ -165,34 +154,35 @@ html, body {
|
|
|
165
154
|
|
|
166
155
|
// 表单 element 按钮大小
|
|
167
156
|
:only-child .el-button {
|
|
168
|
-
//font-size: 15px !important;
|
|
169
157
|
padding: 10px 15px !important;
|
|
170
|
-
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.el-button {
|
|
161
|
+
width: fit-content;
|
|
171
162
|
}
|
|
172
163
|
|
|
173
164
|
// 表单按钮 无背景字体颜色
|
|
174
165
|
:only-child .el-button {
|
|
175
166
|
span, .el-icon {
|
|
176
|
-
//color: var(--
|
|
167
|
+
//color: var(--gwCommonTextColor) !important;
|
|
177
168
|
}
|
|
178
169
|
}
|
|
179
170
|
|
|
180
171
|
// 选中
|
|
181
|
-
|
|
182
|
-
outline: 1px solid var(--headerBackground) !important;
|
|
183
|
-
}
|
|
172
|
+
//.el-button:focus-visible {
|
|
173
|
+
// outline: 1px solid var(--headerBackground) !important;
|
|
174
|
+
//}
|
|
184
175
|
|
|
185
176
|
// 表单按钮 确认颜色
|
|
186
|
-
|
|
187
|
-
background-color: var(--headerBackground) !important;
|
|
188
|
-
border-color: var(--headerBackground) !important;
|
|
189
|
-
color: var(--headerTextColor) !important;
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
}
|
|
177
|
+
//.el-button--primary {
|
|
178
|
+
// background-color: var(--headerBackground) !important;
|
|
179
|
+
// border-color: var(--headerBackground) !important;
|
|
180
|
+
// color: var(--headerTextColor) !important;
|
|
181
|
+
//
|
|
182
|
+
// span, .el-icon {
|
|
183
|
+
// color: var(--headerTextColor) !important;
|
|
184
|
+
// }
|
|
185
|
+
//}
|
|
196
186
|
|
|
197
187
|
//.el-button--warning, .el-button--warning.is-plain {
|
|
198
188
|
// span, .el-icon {
|
|
@@ -216,56 +206,56 @@ html, body {
|
|
|
216
206
|
// }
|
|
217
207
|
//}
|
|
218
208
|
|
|
219
|
-
|
|
220
|
-
color: var(--headerBackground) !important;
|
|
221
|
-
border-color: var(--headerBackground) !important;
|
|
222
|
-
}
|
|
209
|
+
//.el-button:not(.el-button--danger, .el-button--warning):focus, .el-button:not(.el-button--danger, .el-button--warning):hover {
|
|
210
|
+
// color: var(--headerBackground) !important;
|
|
211
|
+
// border-color: var(--headerBackground) !important;
|
|
212
|
+
//}
|
|
223
213
|
|
|
224
214
|
// radio
|
|
225
215
|
.el-radio-button__original-radio:checked + .el-radio-button__inner {
|
|
226
|
-
background-color: var(--headerBackground);
|
|
227
|
-
border-color: var(--headerBackground);
|
|
216
|
+
//background-color: var(--headerBackground);
|
|
217
|
+
//border-color: var(--headerBackground);
|
|
228
218
|
box-shadow: none;
|
|
229
219
|
}
|
|
230
220
|
|
|
231
221
|
.el-radio-button__orig-radio:checked + .el-radio-button__inner {
|
|
232
|
-
color: var(--headerTextColor) !important;
|
|
233
|
-
background-color: var(--headerBackground) !important;
|
|
222
|
+
//color: var(--headerTextColor) !important;
|
|
223
|
+
//background-color: var(--headerBackground) !important;
|
|
234
224
|
border-color: var(--headerBackground) !important;
|
|
235
225
|
box-shadow: -1px 0 0 0 var(--headerBackground) !important;
|
|
236
226
|
}
|
|
237
227
|
|
|
238
|
-
|
|
239
|
-
color: var(--headerBackground) !important;
|
|
240
|
-
}
|
|
228
|
+
//.el-radio-button__inner {
|
|
229
|
+
// color: var(--headerBackground) !important;
|
|
230
|
+
//}
|
|
241
231
|
|
|
242
|
-
|
|
243
|
-
color: var(--el-color-white) !important;
|
|
244
|
-
}
|
|
232
|
+
//.is-active .el-radio-button__inner {
|
|
233
|
+
// color: var(--el-color-white) !important;
|
|
234
|
+
//}
|
|
245
235
|
|
|
246
|
-
|
|
247
|
-
color: var(--headerBackground);
|
|
248
|
-
}
|
|
236
|
+
//.el-radio__input.is-checked + .el-radio__label {
|
|
237
|
+
// color: var(--headerBackground);
|
|
238
|
+
//}
|
|
249
239
|
|
|
250
|
-
|
|
251
|
-
border-color: var(--headerBackground);
|
|
252
|
-
background: var(--headerBackground)
|
|
253
|
-
}
|
|
240
|
+
//.el-radio__input.is-checked .el-radio__inner {
|
|
241
|
+
// border-color: var(--headerBackground);
|
|
242
|
+
// background: var(--headerBackground)
|
|
243
|
+
//}
|
|
254
244
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
background-color: var(--headerBackground) !important;
|
|
258
|
-
color: var(--headerTextColor) !important;
|
|
259
|
-
}
|
|
245
|
+
//// 分页 修改选中色
|
|
246
|
+
//.el-pagination.is-background .el-pager li:not(.disabled).active {
|
|
247
|
+
// background-color: var(--headerBackground) !important;
|
|
248
|
+
// color: var(--headerTextColor) !important;
|
|
249
|
+
//}
|
|
260
250
|
|
|
261
|
-
|
|
262
|
-
color: #fff !important;
|
|
263
|
-
}
|
|
251
|
+
//.el-pagination.is-background .el-pager li.is-active {
|
|
252
|
+
// color: #fff !important;
|
|
253
|
+
//}
|
|
264
254
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
color: var(--
|
|
268
|
-
}
|
|
255
|
+
//// 分页未选中色等
|
|
256
|
+
//.el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li, .el-pagination__goto, .el-pagination__classifier, .el-pagination .el-select .el-input .el-input__inner {
|
|
257
|
+
// color: var(--gwCommonTextColor) !important;
|
|
258
|
+
//}
|
|
269
259
|
|
|
270
260
|
// 修改 表单
|
|
271
261
|
|
|
@@ -277,21 +267,21 @@ html, body {
|
|
|
277
267
|
// width: 400px !important;
|
|
278
268
|
// height: 40px !important;
|
|
279
269
|
}
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
294
|
-
}
|
|
270
|
+
//
|
|
271
|
+
//// 下拉框选中色
|
|
272
|
+
//.el-select__wrapper.is-focused {
|
|
273
|
+
// box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
274
|
+
//}
|
|
275
|
+
//
|
|
276
|
+
//// 日期选中色
|
|
277
|
+
//.el-range-editor.is-active, .el-range-editor.is-active:hover {
|
|
278
|
+
// box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
279
|
+
//}
|
|
280
|
+
//
|
|
281
|
+
//// 表单输入框选中色
|
|
282
|
+
//.el-input__wrapper.is-focus {
|
|
283
|
+
// box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
284
|
+
//}
|
|
295
285
|
|
|
296
286
|
|
|
297
287
|
//
|
|
@@ -300,32 +290,32 @@ html, body {
|
|
|
300
290
|
}
|
|
301
291
|
|
|
302
292
|
.el-form-item__content .el-button {
|
|
303
|
-
color: var(--
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
// 修改日期选中
|
|
307
|
-
.el-date-table td.start-date span,
|
|
308
|
-
.el-date-table td.end-date span {
|
|
309
|
-
background-color: var(--headerBackground) !important;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.el-date-table td.current:not(.disabled) .el-date-table-cell__text {
|
|
313
|
-
background-color: var(--headerBackground) !important;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
// 修改日期今天
|
|
317
|
-
.el-date-table td.today span {
|
|
318
|
-
color: var(--headerBackground) !important;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.el-date-table td.today.end-date span, .el-date-table td.today.start-date span {
|
|
322
|
-
color: var(--headerTextColor) !important;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
// 日期下面修改小文字
|
|
326
|
-
.el-button--text {
|
|
327
|
-
color: var(--headerBackground) !important;
|
|
293
|
+
//color: var(--gwCommonTextColor) !important;
|
|
328
294
|
}
|
|
295
|
+
//
|
|
296
|
+
//// 修改日期选中
|
|
297
|
+
//.el-date-table td.start-date span,
|
|
298
|
+
//.el-date-table td.end-date span {
|
|
299
|
+
// background-color: var(--headerBackground) !important;
|
|
300
|
+
//}
|
|
301
|
+
//
|
|
302
|
+
//.el-date-table td.current:not(.disabled) .el-date-table-cell__text {
|
|
303
|
+
// background-color: var(--headerBackground) !important;
|
|
304
|
+
//}
|
|
305
|
+
//
|
|
306
|
+
//// 修改日期今天
|
|
307
|
+
//.el-date-table td.today span {
|
|
308
|
+
// color: var(--headerBackground) !important;
|
|
309
|
+
//}
|
|
310
|
+
//
|
|
311
|
+
//.el-date-table td.today.end-date span, .el-date-table td.today.start-date span {
|
|
312
|
+
// color: var(--headerTextColor) !important;
|
|
313
|
+
//}
|
|
314
|
+
//
|
|
315
|
+
//// 日期下面修改小文字
|
|
316
|
+
//.el-button--text {
|
|
317
|
+
// color: var(--headerBackground) !important;
|
|
318
|
+
//}
|
|
329
319
|
|
|
330
320
|
// 修改日期格式里面的文字大小
|
|
331
321
|
.el-range-input, .el-date-editor .el-range-separator {
|
|
@@ -342,56 +332,56 @@ html, body {
|
|
|
342
332
|
font-size: 15px !important;
|
|
343
333
|
text-indent: 10px !important;
|
|
344
334
|
}
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
color: var(--headerBackground) !important;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
color: var(--headerBackground) !important;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
color: var(--headerBackground) !important;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
border-color: var(--headerBackground) !important;
|
|
363
|
-
background-color: var(--headerBackground) !important;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
//border-color: var(--headerBackground) !important;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
border-color: var(--headerBackground)
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
border-color: var(--headerBackground) !important;
|
|
377
|
-
background-color: var(--headerBackground) !important;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
color: var(--headerBackground)
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
color: var(--
|
|
393
|
-
font-size: 15px !important;
|
|
394
|
-
}
|
|
335
|
+
//
|
|
336
|
+
//// 下拉组件的选中颜色
|
|
337
|
+
//.el-select-dropdown__item.selected {
|
|
338
|
+
// color: var(--headerBackground) !important;
|
|
339
|
+
//}
|
|
340
|
+
//
|
|
341
|
+
//// 下拉选中色
|
|
342
|
+
//.el-select-dropdown__item.is-selected {
|
|
343
|
+
// color: var(--headerBackground) !important;
|
|
344
|
+
//}
|
|
345
|
+
//
|
|
346
|
+
//// switch 颜色
|
|
347
|
+
//.el-switch__label.is-active {
|
|
348
|
+
// color: var(--headerBackground) !important;
|
|
349
|
+
//}
|
|
350
|
+
//
|
|
351
|
+
//.el-switch.is-checked .el-switch__core {
|
|
352
|
+
// border-color: var(--headerBackground) !important;
|
|
353
|
+
// background-color: var(--headerBackground) !important;
|
|
354
|
+
//}
|
|
355
|
+
//
|
|
356
|
+
//// 勾选框
|
|
357
|
+
//.el-checkbox__inner {
|
|
358
|
+
// //border-color: var(--headerBackground) !important;
|
|
359
|
+
//}
|
|
360
|
+
//
|
|
361
|
+
//.el-checkbox__inner:hover {
|
|
362
|
+
// border-color: var(--headerBackground)
|
|
363
|
+
//}
|
|
364
|
+
//
|
|
365
|
+
//.el-checkbox__input.is-checked .el-checkbox__inner {
|
|
366
|
+
// border-color: var(--headerBackground) !important;
|
|
367
|
+
// background-color: var(--headerBackground) !important;
|
|
368
|
+
//}
|
|
369
|
+
//
|
|
370
|
+
//.el-checkbox__input.is-checked + .el-checkbox__label {
|
|
371
|
+
// color: var(--headerBackground)
|
|
372
|
+
//}
|
|
373
|
+
//
|
|
374
|
+
//// textarea
|
|
375
|
+
//
|
|
376
|
+
//.el-textarea__inner:hover {
|
|
377
|
+
// box-shadow: 0 0 0 1px var(--headerBackground) inset;
|
|
378
|
+
//}
|
|
379
|
+
//
|
|
380
|
+
//// 修改表单文字颜色
|
|
381
|
+
//.el-form-item__label {
|
|
382
|
+
// color: var(--gwCommonTextColor) !important;
|
|
383
|
+
// font-size: 15px !important;
|
|
384
|
+
//}
|
|
395
385
|
|
|
396
386
|
// 这是给内部增加选中
|
|
397
387
|
.pointerAll {
|
|
@@ -403,10 +393,10 @@ html, body {
|
|
|
403
393
|
outline: none;
|
|
404
394
|
}
|
|
405
395
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
color: var(--headerBackground) !important;
|
|
409
|
-
}
|
|
396
|
+
//// 弹窗关闭
|
|
397
|
+
//.el-message-box__headerbtn:focus .el-message-box__close, .el-message-box__headerbtn:hover .el-message-box__close {
|
|
398
|
+
// color: var(--headerBackground) !important;
|
|
399
|
+
//}
|
|
410
400
|
|
|
411
401
|
//-------修改 drawer----
|
|
412
402
|
.el-drawer__header {
|
|
@@ -421,9 +411,9 @@ html, body {
|
|
|
421
411
|
margin-right: 15px;
|
|
422
412
|
}
|
|
423
413
|
|
|
424
|
-
|
|
425
|
-
color: var(--
|
|
426
|
-
}
|
|
414
|
+
//.el-drawer__title {
|
|
415
|
+
// color: var(--gwCommonTextColor) !important;
|
|
416
|
+
//}
|
|
427
417
|
|
|
428
418
|
// 侧边栏
|
|
429
419
|
//.el-menu-item i {
|
|
@@ -431,15 +421,15 @@ html, body {
|
|
|
431
421
|
//}
|
|
432
422
|
|
|
433
423
|
// ----tree --
|
|
434
|
-
|
|
435
|
-
color: var(--headerBackground);
|
|
436
|
-
}
|
|
424
|
+
//.el-tree-node__expand-icon, .edit-icon {
|
|
425
|
+
// color: var(--headerBackground);
|
|
426
|
+
//}
|
|
437
427
|
|
|
438
428
|
// -----路由组-----
|
|
439
|
-
|
|
440
|
-
color: var(--
|
|
441
|
-
background-color: var(--mainBackgroundColor) !important;
|
|
442
|
-
}
|
|
429
|
+
//.header-bot-list-conSqure {
|
|
430
|
+
// color: var(--gwCommonTextColor) !important;
|
|
431
|
+
// background-color: var(--mainBackgroundColor) !important;
|
|
432
|
+
//}
|
|
443
433
|
|
|
444
434
|
// -----dialog------
|
|
445
435
|
.el-dialog {
|
|
@@ -447,9 +437,9 @@ html, body {
|
|
|
447
437
|
}
|
|
448
438
|
|
|
449
439
|
// 其他字体颜色
|
|
450
|
-
|
|
451
|
-
color: var(--
|
|
452
|
-
}
|
|
440
|
+
//.gw-otherText {
|
|
441
|
+
// color: var(--gwCommonTextColor) !important;
|
|
442
|
+
//}
|
|
453
443
|
|
|
454
444
|
// -------拖拽样式---------------------
|
|
455
445
|
.gw-drag-child-global {
|
|
@@ -461,7 +451,7 @@ html, body {
|
|
|
461
451
|
|
|
462
452
|
|
|
463
453
|
.gw-drag-child-right {
|
|
464
|
-
right:
|
|
454
|
+
right: 0;
|
|
465
455
|
top: 0;
|
|
466
456
|
bottom: 0;
|
|
467
457
|
margin: auto;
|
|
@@ -471,7 +461,7 @@ html, body {
|
|
|
471
461
|
}
|
|
472
462
|
|
|
473
463
|
.gw-drag-child-left {
|
|
474
|
-
left:
|
|
464
|
+
left: 0;
|
|
475
465
|
top: 0;
|
|
476
466
|
margin: auto;
|
|
477
467
|
width: 10px;
|
|
@@ -517,8 +507,8 @@ html, body {
|
|
|
517
507
|
bottom: 0;
|
|
518
508
|
top: 0;
|
|
519
509
|
cursor: col-resize;
|
|
520
|
-
background: #ffffff;
|
|
521
|
-
box-shadow:
|
|
510
|
+
//background: #ffffff;
|
|
511
|
+
box-shadow: 0 0 4px 0 #c2cdd5;
|
|
522
512
|
border-radius: 10px;
|
|
523
513
|
//margin: auto auto auto 6px;
|
|
524
514
|
margin: auto auto auto -7px;
|
|
@@ -533,19 +523,12 @@ html, body {
|
|
|
533
523
|
}
|
|
534
524
|
|
|
535
525
|
|
|
536
|
-
//
|
|
526
|
+
// 内容区的样式
|
|
537
527
|
#gw-xc-container {
|
|
538
528
|
box-sizing: border-box;
|
|
539
529
|
position: relative;
|
|
540
|
-
border-right: 1px solid #f5f5f5;
|
|
541
|
-
//
|
|
542
|
-
//margin-bottom: 10px;
|
|
543
|
-
//border-left: 10px solid var(--mainBackgroundColor);
|
|
544
|
-
//border-right: 10px solid var(--mainBackgroundColor);
|
|
545
|
-
border-bottom: 10px solid var(--mainBackgroundColor);
|
|
546
|
-
//border: 10px solid var(--mainBackgroundColor);
|
|
547
|
-
//z-index: 10;
|
|
548
|
-
//background: red;
|
|
530
|
+
//border-right: 1px solid #f5f5f5;
|
|
531
|
+
//border-bottom: 10px solid var(--mainBackgroundColor);
|
|
549
532
|
}
|
|
550
533
|
|
|
551
534
|
.el-menu--horizontal.el-menu {
|
|
@@ -556,7 +539,6 @@ html, body {
|
|
|
556
539
|
border-right: none !important;
|
|
557
540
|
}
|
|
558
541
|
|
|
559
|
-
|
|
560
542
|
.el-drawer__body {
|
|
561
543
|
padding: 0 !important;
|
|
562
544
|
}
|