eoss-ui 0.7.89 → 0.7.91

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.
Files changed (162) hide show
  1. package/lib/button-group.js +16 -0
  2. package/lib/button.js +18 -2
  3. package/lib/calogin.js +16 -0
  4. package/lib/checkbox-group.js +16 -0
  5. package/lib/data-table-form.js +16 -0
  6. package/lib/data-table.js +32 -19
  7. package/lib/date-picker.js +16 -0
  8. package/lib/dialog.js +27 -6
  9. package/lib/eoss-ui.common.js +769 -757
  10. package/lib/flow-group.js +30 -15
  11. package/lib/flow-list.js +112 -96
  12. package/lib/flow.js +178 -162
  13. package/lib/form.js +16 -0
  14. package/lib/handle-user.js +19 -3
  15. package/lib/handler.js +26 -10
  16. package/lib/icon.js +16 -0
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +16 -0
  19. package/lib/input.js +16 -0
  20. package/lib/login.js +16 -0
  21. package/lib/main.js +397 -386
  22. package/lib/nav.js +16 -0
  23. package/lib/page.js +16 -0
  24. package/lib/pagination.js +19 -3
  25. package/lib/player.js +16 -0
  26. package/lib/qr-code.js +16 -0
  27. package/lib/radio-group.js +16 -0
  28. package/lib/retrial-auth.js +22 -6
  29. package/lib/select-ganged.js +16 -0
  30. package/lib/select.js +18 -2
  31. package/lib/selector-panel.js +16 -0
  32. package/lib/selector.js +16 -0
  33. package/lib/sizer.js +16 -0
  34. package/lib/steps.js +16 -0
  35. package/lib/switch.js +16 -0
  36. package/lib/table-form.js +16 -0
  37. package/lib/tabs.js +16 -0
  38. package/lib/theme-chalk/index.css +1 -1
  39. package/lib/theme-chalk/login.css +1 -1
  40. package/lib/tips.js +16 -0
  41. package/lib/tree-group.js +19 -3
  42. package/lib/tree.js +16 -0
  43. package/lib/upload.js +16 -0
  44. package/lib/utils/util.js +16 -0
  45. package/lib/wujie.js +16 -0
  46. package/lib/wxlogin.js +16 -0
  47. package/package.json +1 -1
  48. package/packages/.DS_Store +0 -0
  49. package/packages/button/src/main.vue +2 -2
  50. package/packages/button-group/src/main.vue +346 -346
  51. package/packages/calogin/.DS_Store +0 -0
  52. package/packages/calogin/src/main.vue +412 -412
  53. package/packages/clients/src/main.vue +151 -151
  54. package/packages/data-table/src/column.vue +2 -5
  55. package/packages/data-table/src/main.vue +4 -3
  56. package/packages/date-picker/.DS_Store +0 -0
  57. package/packages/date-picker/src/.DS_Store +0 -0
  58. package/packages/dialog/.DS_Store +0 -0
  59. package/packages/dialog/src/main.vue +11 -4
  60. package/packages/flow/.DS_Store +0 -0
  61. package/packages/flow/src/.DS_Store +0 -0
  62. package/packages/flow/src/component/Circulate.vue +417 -417
  63. package/packages/flow/src/component/CommonOpinions.vue +376 -376
  64. package/packages/flow/src/component/CustomPreset.vue +324 -324
  65. package/packages/flow/src/component/FileList.vue +97 -97
  66. package/packages/flow/src/component/FreeCirculation.vue +244 -244
  67. package/packages/flow/src/component/Preset.vue +257 -257
  68. package/packages/flow/src/component/SendMsg.vue +242 -242
  69. package/packages/flow/src/component/SortFlow.vue +110 -110
  70. package/packages/flow/src/component/taskUnionExamine.vue +761 -761
  71. package/packages/flow/src/form.vue +123 -123
  72. package/packages/flow/src/freeStartFlow.vue +2855 -2855
  73. package/packages/flow/src/processForm.vue +1680 -1680
  74. package/packages/flow/src/processReject.vue +309 -309
  75. package/packages/flow/src/reset.vue +946 -946
  76. package/packages/flow/src/startTaskRead.vue +695 -695
  77. package/packages/flow/src/supervise.vue +159 -159
  78. package/packages/flow/src/table.vue +58 -58
  79. package/packages/flow-group/src/main.vue +728 -727
  80. package/packages/flow-list/.DS_Store +0 -0
  81. package/packages/flow-list/src/main.vue +2337 -2337
  82. package/packages/form/.DS_Store +0 -0
  83. package/packages/form/src/main.vue +3901 -3901
  84. package/packages/form/src/table.vue +1512 -1512
  85. package/packages/handle-user/src/main.vue +137 -137
  86. package/packages/handler/src/main.vue +10 -8
  87. package/packages/icon/.DS_Store +0 -0
  88. package/packages/icon/src/main.vue +104 -104
  89. package/packages/login/.DS_Store +0 -0
  90. package/packages/login/src/main.vue +2087 -2087
  91. package/packages/login/src/resetPassword.vue +557 -557
  92. package/packages/main/.DS_Store +0 -0
  93. package/packages/main/src/.DS_Store +0 -0
  94. package/packages/main/src/default/userinfo.vue +505 -503
  95. package/packages/main/src/main.vue +10 -15
  96. package/packages/main/src/public/online.vue +89 -89
  97. package/packages/main/src/public/search.vue +464 -464
  98. package/packages/main/src/public/settings.vue +273 -273
  99. package/packages/main/src/simplicity/apps.vue +388 -388
  100. package/packages/main/src/simplicity/avatar.vue +82 -82
  101. package/packages/main/src/simplicity/handler.vue +158 -158
  102. package/packages/main/src/simplicity/index.vue +2330 -2328
  103. package/packages/main/src/simplicity/menu-list.vue +135 -135
  104. package/packages/main/src/simplicity/message.vue +293 -293
  105. package/packages/main/src/simplicity/notice.vue +222 -222
  106. package/packages/main/src/simplicity/sub-menu.vue +276 -276
  107. package/packages/main/src/simplicity/user.vue +259 -259
  108. package/packages/main/src/simplicity/userinfo.vue +403 -401
  109. package/packages/main/src/simplicityTop/apps.vue +388 -388
  110. package/packages/main/src/simplicityTop/avatar.vue +82 -82
  111. package/packages/main/src/simplicityTop/handler.vue +215 -215
  112. package/packages/main/src/simplicityTop/index.vue +2620 -2618
  113. package/packages/main/src/simplicityTop/lists.vue +84 -84
  114. package/packages/main/src/simplicityTop/menu-list.vue +135 -135
  115. package/packages/main/src/simplicityTop/message.vue +293 -293
  116. package/packages/main/src/simplicityTop/notice.vue +222 -222
  117. package/packages/main/src/simplicityTop/router-page.vue +45 -45
  118. package/packages/main/src/simplicityTop/sub-menu.vue +274 -274
  119. package/packages/main/src/simplicityTop/user.vue +259 -259
  120. package/packages/main/src/simplicityTop/userinfo.vue +403 -401
  121. package/packages/menu/.DS_Store +0 -0
  122. package/packages/menu/src/main.vue +595 -595
  123. package/packages/nav/src/main.vue +351 -351
  124. package/packages/pagination/src/main.vue +1 -1
  125. package/packages/retrial-auth/src/main.vue +4 -4
  126. package/packages/select/.DS_Store +0 -0
  127. package/packages/select/src/main.vue +2 -2
  128. package/packages/selector/.DS_Store +0 -0
  129. package/packages/selector/src/main.vue +761 -761
  130. package/packages/selector-panel/.DS_Store +0 -0
  131. package/packages/selector-panel/src/main.vue +1036 -1036
  132. package/packages/selector-panel/src/selection.vue +174 -174
  133. package/packages/switch/src/main.vue +170 -170
  134. package/packages/theme-chalk/lib/index.css +1 -1
  135. package/packages/theme-chalk/lib/login.css +1 -1
  136. package/packages/theme-chalk/src/.DS_Store +0 -0
  137. package/packages/theme-chalk/src/data-table.scss +297 -297
  138. package/packages/theme-chalk/src/flow-list.scss +55 -55
  139. package/packages/theme-chalk/src/flow.scss +373 -373
  140. package/packages/theme-chalk/src/form.scss +501 -501
  141. package/packages/theme-chalk/src/handler.scss +148 -148
  142. package/packages/theme-chalk/src/icon.scss +3452 -3452
  143. package/packages/theme-chalk/src/login.scss +1006 -1006
  144. package/packages/theme-chalk/src/main.scss +664 -664
  145. package/packages/theme-chalk/src/menu.scss +224 -224
  146. package/packages/theme-chalk/src/selector.scss +114 -114
  147. package/packages/theme-chalk/src/simplicity-top.scss +1845 -1845
  148. package/packages/theme-chalk/src/simplicity.scss +1403 -1403
  149. package/packages/theme-chalk/src/tree.scss +165 -165
  150. package/packages/theme-chalk/src/upload.scss +172 -172
  151. package/packages/tips/src/main.vue +141 -141
  152. package/packages/toolbar/src/main.vue +430 -430
  153. package/packages/tree-group/src/main.vue +2 -1
  154. package/packages/upload/.DS_Store +0 -0
  155. package/packages/upload/src/main.vue +1344 -1344
  156. package/packages/wujie/src/main.vue +146 -146
  157. package/src/.DS_Store +0 -0
  158. package/src/config/api.js +348 -348
  159. package/src/index.js +163 -163
  160. package/src/utils/.DS_Store +0 -0
  161. package/src/utils/rules.js +18 -18
  162. package/src/utils/util.js +16 -0
@@ -1,664 +1,664 @@
1
- @import './common/var.scss';
2
- @import './base.scss';
3
- @import './simplicity.scss';
4
- @import './simplicity-top.scss';
5
- .es-main-box {
6
- height: 100%;
7
- overflow: hidden;
8
- position: relative;
9
- .es-launch-image {
10
- z-index: 99999;
11
- }
12
- }
13
- .es-main {
14
- height: 100%;
15
- overflow: hidden;
16
- position: relative;
17
-
18
- .es-main-header {
19
- height: $--main-header-height;
20
- position: relative;
21
- background-color: $--color-primary;
22
- background-position: left center;
23
- background-repeat: no-repeat;
24
- background-size: cover;
25
- z-index: 0;
26
- color: #fff;
27
- @extend .es-flex;
28
- @extend .es-align-middle;
29
-
30
- .es-main-logo {
31
- max-height: 60%;
32
- margin-left: 50px;
33
- }
34
-
35
- .es-logo-error {
36
- padding: 0 4px;
37
- display: flex;
38
- align-items: center;
39
- width: 300px;
40
- height: 100%;
41
- color: #333;
42
- background: #f5f7fa;
43
-
44
- .el-icon-picture-outline {
45
- font-size: 30px;
46
- color: #909399;
47
- }
48
- }
49
- & ~ .es-main-default-box {
50
- top: $--main-header-height;
51
- }
52
- }
53
-
54
- .es-main-top-nav {
55
- flex: 1;
56
- height: 100%;
57
- position: relative;
58
- .es-menu-horizontal-scrollbar {
59
- position: absolute;
60
- left: 0;
61
- right: 0;
62
- height: $--main-header-height;
63
- }
64
- .es-fourth-tabs {
65
- border: 0;
66
- background-color: $--color-primary;
67
- .el-menu {
68
- border-bottom: 0;
69
- }
70
- .el-menu-item,
71
- .es-submenu,
72
- .el-submenu__title {
73
- height: $--main-header-height !important;
74
- line-height: 1 !important;
75
- color: rgba(255, 255, 255, 0.85) !important;
76
- &:not(.is-disabled) {
77
- &:focus,
78
- &:hover,
79
- &.is-active,
80
- &.es-menu-item-focus {
81
- background-color: $--color-primary-light-7;
82
- border: 0;
83
- & > .el-submenu__title {
84
- border: 0;
85
- }
86
- }
87
- }
88
- .es-menu-item-icon {
89
- color: rgba(255, 255, 255, 0.85);
90
- }
91
- .el-submenu__icon-arrow {
92
- color: rgba(255, 255, 255, 0.85);
93
- }
94
- }
95
- .el-menu-item {
96
- @extend .es-flex-vertical, .es-align-middle, .es-align-center;
97
- }
98
- }
99
- }
100
- .es-main-default-box {
101
- display: flex;
102
- position: absolute;
103
- left: 0;
104
- top: 0;
105
- right: 0;
106
- bottom: 0;
107
- z-index: 0;
108
- }
109
-
110
- .es-main-left {
111
- height: 100%;
112
- position: relative;
113
- background-color: $--color-primary-light-10;
114
- .es-main-side {
115
- overflow: hidden;
116
- &.es-main-topside {
117
- margin-top: -$--main-header-height;
118
- }
119
- .es-main-side-logo {
120
- height: $--main-header-height;
121
- display: block;
122
- width: 230px;
123
- .es-main-logo {
124
- height: $--main-header-height;
125
- }
126
- }
127
- .es-handle-user {
128
- .es-user-info {
129
- height: auto;
130
- padding: 8px 4px 8px 0;
131
- .es-user-name {
132
- height: 30px;
133
- line-height: 30px;
134
- }
135
- }
136
- }
137
- }
138
- }
139
-
140
- .es-main-body {
141
- flex: 1;
142
- display: flex;
143
- flex-direction: column;
144
- box-orient: vertical;
145
- position: relative;
146
- transition: all 0.2s;
147
- -webkit-transition: all 0.2s;
148
-
149
- .es-body {
150
- flex: 1;
151
- position: relative;
152
- overflow: hidden;
153
- &.es-body-wrapper {
154
- &::after {
155
- content: '';
156
- display: block;
157
- position: absolute;
158
- left: 0;
159
- top: 0;
160
- right: 0;
161
- bottom: 0;
162
- }
163
- }
164
- }
165
-
166
- .es-body-main {
167
- position: absolute;
168
- left: 0;
169
- top: 0;
170
- right: 0;
171
- bottom: 0;
172
- overflow: hidden;
173
- }
174
- }
175
-
176
- .es-fourth-tabs {
177
- height: 45px;
178
- overflow: hidden;
179
- background-color: #f5f5f5;
180
- border-bottom: $--border-base;
181
- .el-menu-item {
182
- height: 44px;
183
- line-height: 44px;
184
- }
185
- }
186
-
187
- .es-setting-btn {
188
- position: fixed;
189
- right: 0;
190
- top: 200px;
191
- z-index: 9;
192
-
193
- .es-icon-set {
194
- font-size: 18px;
195
- font-weight: bold;
196
- }
197
- }
198
- &.es-main-topside {
199
- color: #333 !important;
200
- .es-main-header {
201
- padding-left: 230px;
202
- }
203
- .es-handle-user {
204
- padding-top: 16px;
205
- padding-bottom: 16px;
206
- }
207
- .es-main-left {
208
- border-right: $--border-base;
209
- }
210
- .es-nav-main:not(.es-nav-overlap) {
211
- background-color: transparent;
212
- border-right: 0;
213
- }
214
- .es-main-top-nav {
215
- .es-menu-horizontal {
216
- background-color: transparent;
217
- }
218
- }
219
- }
220
- .es-apps-modal,
221
- .es-public-drawer {
222
- position: absolute;
223
- .el-drawer__header {
224
- margin-bottom: 0;
225
- }
226
- .el-drawer__body {
227
- padding: 0;
228
- position: relative;
229
- }
230
- }
231
- }
232
- .el-menu--popup-topnav {
233
- .el-menu {
234
- background-color: $--color-primary !important;
235
- color: #ffff !important;
236
- .el-menu-item,
237
- .el-submenu__title {
238
- background-color: transparent !important;
239
- color: #fff !important;
240
- .es-menu-item-icon {
241
- color: #fff;
242
- }
243
- .el-submenu__icon-arrow {
244
- color: #fff;
245
- }
246
- &:not(.is-disabled) {
247
- &:focus,
248
- &:hover,
249
- &.is-active {
250
- background-color: $--color-primary-light-7 !important;
251
- }
252
- }
253
- }
254
- }
255
- }
256
-
257
- .es-sets-drawer {
258
- padding-top: 48px;
259
-
260
- .el-drawer__header {
261
- padding: 12px 4px 12px 16px !important;
262
- margin: 0 !important;
263
- border-bottom: $--border-base;
264
- box-shadow: $--box-shadow-base;
265
- line-height: 21px;
266
- position: absolute;
267
- left: 0;
268
- top: 0;
269
- right: 0;
270
- z-index: 1;
271
-
272
- span {
273
- font-size: 16px;
274
- color: #333;
275
- }
276
- }
277
-
278
- .el-drawer__body {
279
- padding: 16px 20px;
280
- }
281
- }
282
- .es-setting-item {
283
- & + .es-setting-item {
284
- border-top: $--border-base;
285
- padding-top: 20px;
286
- margin-top: 20px;
287
- }
288
- .es-setting-navs-box {
289
- display: flex;
290
- flex-wrap: wrap;
291
- .es-setting-navs-item {
292
- margin-left: 16px;
293
- }
294
- }
295
- .es-setting-navs {
296
- width: 100px;
297
- height: 50px;
298
- border-radius: 2px;
299
- position: relative;
300
- overflow: hidden;
301
- background-color: $--color-primary;
302
- margin-bottom: 12px;
303
- cursor: pointer;
304
- &::after {
305
- content: '';
306
- display: block;
307
- position: absolute;
308
- left: 0;
309
- top: 10px;
310
- right: 0;
311
- bottom: 0;
312
- z-index: 1;
313
- background-color: #f0f2f5;
314
- }
315
- &.es-setting-side-nav {
316
- &::before {
317
- content: '';
318
- display: block;
319
- position: absolute;
320
- left: 0;
321
- width: 8px;
322
- top: 10px;
323
- bottom: 0;
324
- z-index: 2;
325
- background-color: $--color-primary-light-8;
326
- }
327
- .es-setting-side-sub-nav {
328
- width: 16px;
329
- position: absolute;
330
- left: 8px;
331
- top: 10px;
332
- bottom: 0;
333
- z-index: 3;
334
- background-color: $--color-primary-light-10;
335
- }
336
- }
337
- &.es-setting-app-nav {
338
- &::before {
339
- content: '';
340
- display: block;
341
- position: absolute;
342
- left: 0;
343
- width: 8px;
344
- top: 0;
345
- bottom: 0;
346
- z-index: 2;
347
- background-color: $--color-primary-light-8;
348
- }
349
- &::after {
350
- top: 0;
351
- }
352
- }
353
- &.es-setting-subsystem-nav {
354
- &::before {
355
- content: '';
356
- display: block;
357
- position: absolute;
358
- left: 0;
359
- width: 16px;
360
- top: 10px;
361
- bottom: 0;
362
- z-index: 2;
363
- background-color: $--color-primary-light-10;
364
- }
365
- }
366
- &.es-setting-top-side-nav {
367
- &::before {
368
- content: '';
369
- display: block;
370
- position: absolute;
371
- left: 0;
372
- width: 20px;
373
- top: 10px;
374
- bottom: 0;
375
- z-index: 2;
376
- background-color: $--color-primary-light-10;
377
- }
378
- }
379
- &.es-setting-side-navs {
380
- &::before {
381
- content: '';
382
- display: block;
383
- position: absolute;
384
- left: 0;
385
- width: 20px;
386
- top: 0;
387
- bottom: 0;
388
- z-index: 2;
389
- background-color: $--color-primary-light-10;
390
- }
391
- }
392
- .icon-gou {
393
- position: absolute;
394
- z-index: 9;
395
- left: 50%;
396
- top: 50%;
397
- margin-left: -8px;
398
- margin-top: -6px;
399
- }
400
- }
401
- }
402
- .es-setting-title {
403
- margin-bottom: 12px;
404
- font-size: 14px;
405
- }
406
-
407
- .es-setting-theme {
408
- .el-radio-button {
409
- cursor: pointer;
410
- margin-right: 8px;
411
- border-radius: 2px;
412
- }
413
-
414
- .el-radio-button__inner {
415
- z-index: -1;
416
- }
417
-
418
- .el-radio-button__inner {
419
- background-color: transparent !important;
420
- border: 0;
421
- display: inline-block;
422
- padding: 0;
423
- width: 20px;
424
- height: 20px;
425
- border-radius: 2px;
426
- text-align: center;
427
- line-height: 20px;
428
- }
429
-
430
- .el-radio-button__orig-radio:checked + .el-radio-button__inner {
431
- background-color: transparent !important;
432
- z-index: 1;
433
- border-radius: 2px;
434
- border: 0;
435
- }
436
- }
437
-
438
- .es-msgs-box {
439
- position: absolute;
440
-
441
- .el-drawer__header {
442
- padding: 8px 0 0 12px;
443
- margin-bottom: 0;
444
- }
445
-
446
- .es-msgs-main {
447
- box-shadow: -2px 0 4px rgba(0, 0, 0, 0.3);
448
- overflow: hidden;
449
-
450
- .el-drawer__body {
451
- padding: 0;
452
- @extend .es-flex-vertical;
453
- }
454
- }
455
-
456
- .es-overlook {
457
- cursor: pointer;
458
- line-height: 14px;
459
- background-color: #fff;
460
- border: 1px solid #dcdfe6;
461
- color: #606266;
462
- border-radius: 4px;
463
- padding: 2px 4px;
464
- font-size: 12px;
465
-
466
- &:hover {
467
- color: $--color-primary;
468
- border-color: $--color-primary-light-3;
469
- background-color: $--color-primary-light-1;
470
- }
471
- }
472
-
473
- .es-msg-header {
474
- height: 46px;
475
- line-height: 22px;
476
- font-size: 14px;
477
- border-bottom: $--border-base;
478
- padding: 12px;
479
- background-color: #f3f3f3;
480
-
481
- .es-overlook {
482
- float: right;
483
- line-height: 18px;
484
- }
485
- }
486
-
487
- .es-msg-lists-box {
488
- flex: 1;
489
- position: relative;
490
- overflow: hidden;
491
-
492
- .es-msg-lists {
493
- position: absolute;
494
- top: 0;
495
- right: 0;
496
- bottom: 0;
497
- left: 0;
498
- overflow: hidden;
499
- }
500
-
501
- .es-msg-item {
502
- margin: 8px 12px;
503
- position: relative;
504
- overflow: visible;
505
-
506
- .el-card__body {
507
- padding: 8px;
508
- }
509
-
510
- & + .es-msg-item {
511
- margin-top: 0;
512
- }
513
-
514
- .es-overlook {
515
- float: right;
516
- }
517
-
518
- .el-icon-circle-close {
519
- color: #606266;
520
- cursor: pointer;
521
- position: absolute;
522
- background-color: #fff;
523
- border-radius: 8px;
524
- top: -4px;
525
- right: -6px;
526
- font-size: 16px;
527
-
528
- &:hover {
529
- color: $--color-primary;
530
- border-color: $--color-primary-light-3;
531
- background-color: $--color-primary-light-1;
532
- }
533
- }
534
- }
535
-
536
- .es-msg-item-title {
537
- font-size: 12px;
538
- margin-bottom: 8px;
539
- line-height: 18px;
540
- text-align: justify;
541
- }
542
-
543
- .es-msg-item-time {
544
- font-size: 12px;
545
- color: #606266;
546
- }
547
-
548
- .es-msg-tips {
549
- line-height: 24px;
550
- font-size: 12px;
551
- text-align: center;
552
- }
553
- }
554
-
555
- .es-msg-total,
556
- .es-notice-footer {
557
- height: 46px;
558
- line-height: 22px;
559
- font-size: 14px;
560
- border-top: $--border-base;
561
- padding: 12px;
562
- background-color: #f3f3f3;
563
- span {
564
- cursor: pointer;
565
- }
566
- }
567
- }
568
-
569
- .es-notice-box {
570
- position: absolute;
571
- border: $--border-base;
572
- border-radius: 4px;
573
- right: 0;
574
- bottom: 0;
575
- box-shadow: $--box-shadow-base;
576
- z-index: 99;
577
-
578
- .es-msgs-box {
579
- background-color: #ffffff;
580
- position: unset;
581
- animation: rtl-drawer-out 0.3s;
582
- width: 260px;
583
- height: 260px;
584
- @extend .es-flex-vertical;
585
-
586
- &.es-in {
587
- animation: rtl-drawer-in 0.3s 1ms;
588
- }
589
- }
590
- }
591
-
592
- .es-user-info {
593
- .el-collapse-item__content {
594
- position: relative;
595
- }
596
-
597
- .el-form-item.es-user-info-job {
598
- // display: none !important;
599
- position: absolute;
600
- left: 50%;
601
- width: 50% !important;
602
-
603
- .el-form-item__content {
604
- margin-right: 0;
605
- }
606
- }
607
-
608
- .el-form-item.es-qrcode {
609
- // display: none !important;
610
- position: absolute;
611
- left: 20%;
612
- width: 50% !important;
613
- pointer-events: none;
614
-
615
- .el-form-item__content {
616
- margin-right: 0;
617
- }
618
- }
619
- }
620
-
621
- .weixinQrcode {
622
- margin-left: 12px;
623
- width: 102px;
624
- height: 102px;
625
- border: 1px solid #333;
626
- }
627
- .es-clients-dialog {
628
- .el-dialog__header {
629
- background-color: $--color-primary !important;
630
- border-bottom-color: $--color-primary !important;
631
- .el-dialog__title {
632
- color: #fff;
633
- }
634
- .el-dialog__headerbtn .el-icon {
635
- color: #fff !important;
636
- &:hover {
637
- opacity: 0.8;
638
- }
639
- }
640
- }
641
- .el-dialog__body {
642
- padding: 0;
643
- }
644
- }
645
- .es-public-drawer-main {
646
- position: absolute;
647
- left: 0;
648
- top: 0;
649
- right: 0;
650
- bottom: 0;
651
- }
652
-
653
- .es-ai-icon {
654
- width: 56px;
655
- height: 56px;
656
- cursor: move;
657
- vertical-align: top;
658
- display: flex;
659
- align-items: center;
660
- justify-content: center;
661
- .es-ai-image {
662
- width: 56px;
663
- }
664
- }
1
+ @import './common/var.scss';
2
+ @import './base.scss';
3
+ @import './simplicity.scss';
4
+ @import './simplicity-top.scss';
5
+ .es-main-box {
6
+ height: 100%;
7
+ overflow: hidden;
8
+ position: relative;
9
+ .es-launch-image {
10
+ z-index: 99999;
11
+ }
12
+ }
13
+ .es-main {
14
+ height: 100%;
15
+ overflow: hidden;
16
+ position: relative;
17
+
18
+ .es-main-header {
19
+ height: $--main-header-height;
20
+ position: relative;
21
+ background-color: $--color-primary;
22
+ background-position: left center;
23
+ background-repeat: no-repeat;
24
+ background-size: cover;
25
+ z-index: 0;
26
+ color: #fff;
27
+ @extend .es-flex;
28
+ @extend .es-align-middle;
29
+
30
+ .es-main-logo {
31
+ max-height: 60%;
32
+ margin-left: 50px;
33
+ }
34
+
35
+ .es-logo-error {
36
+ padding: 0 4px;
37
+ display: flex;
38
+ align-items: center;
39
+ width: 300px;
40
+ height: 100%;
41
+ color: #333;
42
+ background: #f5f7fa;
43
+
44
+ .el-icon-picture-outline {
45
+ font-size: 30px;
46
+ color: #909399;
47
+ }
48
+ }
49
+ & ~ .es-main-default-box {
50
+ top: $--main-header-height;
51
+ }
52
+ }
53
+
54
+ .es-main-top-nav {
55
+ flex: 1;
56
+ height: 100%;
57
+ position: relative;
58
+ .es-menu-horizontal-scrollbar {
59
+ position: absolute;
60
+ left: 0;
61
+ right: 0;
62
+ height: $--main-header-height;
63
+ }
64
+ .es-fourth-tabs {
65
+ border: 0;
66
+ background-color: $--color-primary;
67
+ .el-menu {
68
+ border-bottom: 0;
69
+ }
70
+ .el-menu-item,
71
+ .es-submenu,
72
+ .el-submenu__title {
73
+ height: $--main-header-height !important;
74
+ line-height: 1 !important;
75
+ color: rgba(255, 255, 255, 0.85) !important;
76
+ &:not(.is-disabled) {
77
+ &:focus,
78
+ &:hover,
79
+ &.is-active,
80
+ &.es-menu-item-focus {
81
+ background-color: $--color-primary-light-7;
82
+ border: 0;
83
+ & > .el-submenu__title {
84
+ border: 0;
85
+ }
86
+ }
87
+ }
88
+ .es-menu-item-icon {
89
+ color: rgba(255, 255, 255, 0.85);
90
+ }
91
+ .el-submenu__icon-arrow {
92
+ color: rgba(255, 255, 255, 0.85);
93
+ }
94
+ }
95
+ .el-menu-item {
96
+ @extend .es-flex-vertical, .es-align-middle, .es-align-center;
97
+ }
98
+ }
99
+ }
100
+ .es-main-default-box {
101
+ display: flex;
102
+ position: absolute;
103
+ left: 0;
104
+ top: 0;
105
+ right: 0;
106
+ bottom: 0;
107
+ z-index: 0;
108
+ }
109
+
110
+ .es-main-left {
111
+ height: 100%;
112
+ position: relative;
113
+ background-color: $--color-primary-light-10;
114
+ .es-main-side {
115
+ overflow: hidden;
116
+ &.es-main-topside {
117
+ margin-top: -$--main-header-height;
118
+ }
119
+ .es-main-side-logo {
120
+ height: $--main-header-height;
121
+ display: block;
122
+ width: 230px;
123
+ .es-main-logo {
124
+ height: $--main-header-height;
125
+ }
126
+ }
127
+ .es-handle-user {
128
+ .es-user-info {
129
+ height: auto;
130
+ padding: 8px 4px 8px 0;
131
+ .es-user-name {
132
+ height: 30px;
133
+ line-height: 30px;
134
+ }
135
+ }
136
+ }
137
+ }
138
+ }
139
+
140
+ .es-main-body {
141
+ flex: 1;
142
+ display: flex;
143
+ flex-direction: column;
144
+ box-orient: vertical;
145
+ position: relative;
146
+ transition: all 0.2s;
147
+ -webkit-transition: all 0.2s;
148
+
149
+ .es-body {
150
+ flex: 1;
151
+ position: relative;
152
+ overflow: hidden;
153
+ &.es-body-wrapper {
154
+ &::after {
155
+ content: '';
156
+ display: block;
157
+ position: absolute;
158
+ left: 0;
159
+ top: 0;
160
+ right: 0;
161
+ bottom: 0;
162
+ }
163
+ }
164
+ }
165
+
166
+ .es-body-main {
167
+ position: absolute;
168
+ left: 0;
169
+ top: 0;
170
+ right: 0;
171
+ bottom: 0;
172
+ overflow: hidden;
173
+ }
174
+ }
175
+
176
+ .es-fourth-tabs {
177
+ height: 45px;
178
+ overflow: hidden;
179
+ background-color: #f5f5f5;
180
+ border-bottom: $--border-base;
181
+ .el-menu-item {
182
+ height: 44px;
183
+ line-height: 44px;
184
+ }
185
+ }
186
+
187
+ .es-setting-btn {
188
+ position: fixed;
189
+ right: 0;
190
+ top: 200px;
191
+ z-index: 9;
192
+
193
+ .es-icon-set {
194
+ font-size: 18px;
195
+ font-weight: bold;
196
+ }
197
+ }
198
+ &.es-main-topside {
199
+ color: #333 !important;
200
+ .es-main-header {
201
+ padding-left: 230px;
202
+ }
203
+ .es-handle-user {
204
+ padding-top: 16px;
205
+ padding-bottom: 16px;
206
+ }
207
+ .es-main-left {
208
+ border-right: $--border-base;
209
+ }
210
+ .es-nav-main:not(.es-nav-overlap) {
211
+ background-color: transparent;
212
+ border-right: 0;
213
+ }
214
+ .es-main-top-nav {
215
+ .es-menu-horizontal {
216
+ background-color: transparent;
217
+ }
218
+ }
219
+ }
220
+ .es-apps-modal,
221
+ .es-public-drawer {
222
+ position: absolute;
223
+ .el-drawer__header {
224
+ margin-bottom: 0;
225
+ }
226
+ .el-drawer__body {
227
+ padding: 0;
228
+ position: relative;
229
+ }
230
+ }
231
+ }
232
+ .el-menu--popup-topnav {
233
+ .el-menu {
234
+ background-color: $--color-primary !important;
235
+ color: #ffff !important;
236
+ .el-menu-item,
237
+ .el-submenu__title {
238
+ background-color: transparent !important;
239
+ color: #fff !important;
240
+ .es-menu-item-icon {
241
+ color: #fff;
242
+ }
243
+ .el-submenu__icon-arrow {
244
+ color: #fff;
245
+ }
246
+ &:not(.is-disabled) {
247
+ &:focus,
248
+ &:hover,
249
+ &.is-active {
250
+ background-color: $--color-primary-light-7 !important;
251
+ }
252
+ }
253
+ }
254
+ }
255
+ }
256
+
257
+ .es-sets-drawer {
258
+ padding-top: 48px;
259
+
260
+ .el-drawer__header {
261
+ padding: 12px 4px 12px 16px !important;
262
+ margin: 0 !important;
263
+ border-bottom: $--border-base;
264
+ box-shadow: $--box-shadow-base;
265
+ line-height: 21px;
266
+ position: absolute;
267
+ left: 0;
268
+ top: 0;
269
+ right: 0;
270
+ z-index: 1;
271
+
272
+ span {
273
+ font-size: 16px;
274
+ color: #333;
275
+ }
276
+ }
277
+
278
+ .el-drawer__body {
279
+ padding: 16px 20px;
280
+ }
281
+ }
282
+ .es-setting-item {
283
+ & + .es-setting-item {
284
+ border-top: $--border-base;
285
+ padding-top: 20px;
286
+ margin-top: 20px;
287
+ }
288
+ .es-setting-navs-box {
289
+ display: flex;
290
+ flex-wrap: wrap;
291
+ .es-setting-navs-item {
292
+ margin-left: 16px;
293
+ }
294
+ }
295
+ .es-setting-navs {
296
+ width: 100px;
297
+ height: 50px;
298
+ border-radius: 2px;
299
+ position: relative;
300
+ overflow: hidden;
301
+ background-color: $--color-primary;
302
+ margin-bottom: 12px;
303
+ cursor: pointer;
304
+ &::after {
305
+ content: '';
306
+ display: block;
307
+ position: absolute;
308
+ left: 0;
309
+ top: 10px;
310
+ right: 0;
311
+ bottom: 0;
312
+ z-index: 1;
313
+ background-color: #f0f2f5;
314
+ }
315
+ &.es-setting-side-nav {
316
+ &::before {
317
+ content: '';
318
+ display: block;
319
+ position: absolute;
320
+ left: 0;
321
+ width: 8px;
322
+ top: 10px;
323
+ bottom: 0;
324
+ z-index: 2;
325
+ background-color: $--color-primary-light-8;
326
+ }
327
+ .es-setting-side-sub-nav {
328
+ width: 16px;
329
+ position: absolute;
330
+ left: 8px;
331
+ top: 10px;
332
+ bottom: 0;
333
+ z-index: 3;
334
+ background-color: $--color-primary-light-10;
335
+ }
336
+ }
337
+ &.es-setting-app-nav {
338
+ &::before {
339
+ content: '';
340
+ display: block;
341
+ position: absolute;
342
+ left: 0;
343
+ width: 8px;
344
+ top: 0;
345
+ bottom: 0;
346
+ z-index: 2;
347
+ background-color: $--color-primary-light-8;
348
+ }
349
+ &::after {
350
+ top: 0;
351
+ }
352
+ }
353
+ &.es-setting-subsystem-nav {
354
+ &::before {
355
+ content: '';
356
+ display: block;
357
+ position: absolute;
358
+ left: 0;
359
+ width: 16px;
360
+ top: 10px;
361
+ bottom: 0;
362
+ z-index: 2;
363
+ background-color: $--color-primary-light-10;
364
+ }
365
+ }
366
+ &.es-setting-top-side-nav {
367
+ &::before {
368
+ content: '';
369
+ display: block;
370
+ position: absolute;
371
+ left: 0;
372
+ width: 20px;
373
+ top: 10px;
374
+ bottom: 0;
375
+ z-index: 2;
376
+ background-color: $--color-primary-light-10;
377
+ }
378
+ }
379
+ &.es-setting-side-navs {
380
+ &::before {
381
+ content: '';
382
+ display: block;
383
+ position: absolute;
384
+ left: 0;
385
+ width: 20px;
386
+ top: 0;
387
+ bottom: 0;
388
+ z-index: 2;
389
+ background-color: $--color-primary-light-10;
390
+ }
391
+ }
392
+ .icon-gou {
393
+ position: absolute;
394
+ z-index: 9;
395
+ left: 50%;
396
+ top: 50%;
397
+ margin-left: -8px;
398
+ margin-top: -6px;
399
+ }
400
+ }
401
+ }
402
+ .es-setting-title {
403
+ margin-bottom: 12px;
404
+ font-size: 14px;
405
+ }
406
+
407
+ .es-setting-theme {
408
+ .el-radio-button {
409
+ cursor: pointer;
410
+ margin-right: 8px;
411
+ border-radius: 2px;
412
+ }
413
+
414
+ .el-radio-button__inner {
415
+ z-index: -1;
416
+ }
417
+
418
+ .el-radio-button__inner {
419
+ background-color: transparent !important;
420
+ border: 0;
421
+ display: inline-block;
422
+ padding: 0;
423
+ width: 20px;
424
+ height: 20px;
425
+ border-radius: 2px;
426
+ text-align: center;
427
+ line-height: 20px;
428
+ }
429
+
430
+ .el-radio-button__orig-radio:checked + .el-radio-button__inner {
431
+ background-color: transparent !important;
432
+ z-index: 1;
433
+ border-radius: 2px;
434
+ border: 0;
435
+ }
436
+ }
437
+
438
+ .es-msgs-box {
439
+ position: absolute;
440
+
441
+ .el-drawer__header {
442
+ padding: 8px 0 0 12px;
443
+ margin-bottom: 0;
444
+ }
445
+
446
+ .es-msgs-main {
447
+ box-shadow: -2px 0 4px rgba(0, 0, 0, 0.3);
448
+ overflow: hidden;
449
+
450
+ .el-drawer__body {
451
+ padding: 0;
452
+ @extend .es-flex-vertical;
453
+ }
454
+ }
455
+
456
+ .es-overlook {
457
+ cursor: pointer;
458
+ line-height: 14px;
459
+ background-color: #fff;
460
+ border: 1px solid #dcdfe6;
461
+ color: #606266;
462
+ border-radius: 4px;
463
+ padding: 2px 4px;
464
+ font-size: 12px;
465
+
466
+ &:hover {
467
+ color: $--color-primary;
468
+ border-color: $--color-primary-light-3;
469
+ background-color: $--color-primary-light-1;
470
+ }
471
+ }
472
+
473
+ .es-msg-header {
474
+ height: 46px;
475
+ line-height: 22px;
476
+ font-size: 14px;
477
+ border-bottom: $--border-base;
478
+ padding: 12px;
479
+ background-color: #f3f3f3;
480
+
481
+ .es-overlook {
482
+ float: right;
483
+ line-height: 18px;
484
+ }
485
+ }
486
+
487
+ .es-msg-lists-box {
488
+ flex: 1;
489
+ position: relative;
490
+ overflow: hidden;
491
+
492
+ .es-msg-lists {
493
+ position: absolute;
494
+ top: 0;
495
+ right: 0;
496
+ bottom: 0;
497
+ left: 0;
498
+ overflow: hidden;
499
+ }
500
+
501
+ .es-msg-item {
502
+ margin: 8px 12px;
503
+ position: relative;
504
+ overflow: visible;
505
+
506
+ .el-card__body {
507
+ padding: 8px;
508
+ }
509
+
510
+ & + .es-msg-item {
511
+ margin-top: 0;
512
+ }
513
+
514
+ .es-overlook {
515
+ float: right;
516
+ }
517
+
518
+ .el-icon-circle-close {
519
+ color: #606266;
520
+ cursor: pointer;
521
+ position: absolute;
522
+ background-color: #fff;
523
+ border-radius: 8px;
524
+ top: -4px;
525
+ right: -6px;
526
+ font-size: 16px;
527
+
528
+ &:hover {
529
+ color: $--color-primary;
530
+ border-color: $--color-primary-light-3;
531
+ background-color: $--color-primary-light-1;
532
+ }
533
+ }
534
+ }
535
+
536
+ .es-msg-item-title {
537
+ font-size: 12px;
538
+ margin-bottom: 8px;
539
+ line-height: 18px;
540
+ text-align: justify;
541
+ }
542
+
543
+ .es-msg-item-time {
544
+ font-size: 12px;
545
+ color: #606266;
546
+ }
547
+
548
+ .es-msg-tips {
549
+ line-height: 24px;
550
+ font-size: 12px;
551
+ text-align: center;
552
+ }
553
+ }
554
+
555
+ .es-msg-total,
556
+ .es-notice-footer {
557
+ height: 46px;
558
+ line-height: 22px;
559
+ font-size: 14px;
560
+ border-top: $--border-base;
561
+ padding: 12px;
562
+ background-color: #f3f3f3;
563
+ span {
564
+ cursor: pointer;
565
+ }
566
+ }
567
+ }
568
+
569
+ .es-notice-box {
570
+ position: absolute;
571
+ border: $--border-base;
572
+ border-radius: 4px;
573
+ right: 0;
574
+ bottom: 0;
575
+ box-shadow: $--box-shadow-base;
576
+ z-index: 99;
577
+
578
+ .es-msgs-box {
579
+ background-color: #ffffff;
580
+ position: unset;
581
+ animation: rtl-drawer-out 0.3s;
582
+ width: 260px;
583
+ height: 260px;
584
+ @extend .es-flex-vertical;
585
+
586
+ &.es-in {
587
+ animation: rtl-drawer-in 0.3s 1ms;
588
+ }
589
+ }
590
+ }
591
+
592
+ .es-user-info {
593
+ .el-collapse-item__content {
594
+ position: relative;
595
+ }
596
+
597
+ .el-form-item.es-user-info-job {
598
+ // display: none !important;
599
+ position: absolute;
600
+ left: 50%;
601
+ width: 50% !important;
602
+
603
+ .el-form-item__content {
604
+ margin-right: 0;
605
+ }
606
+ }
607
+
608
+ .el-form-item.es-qrcode {
609
+ // display: none !important;
610
+ position: absolute;
611
+ left: 20%;
612
+ width: 50% !important;
613
+ pointer-events: none;
614
+
615
+ .el-form-item__content {
616
+ margin-right: 0;
617
+ }
618
+ }
619
+ }
620
+
621
+ .weixinQrcode {
622
+ margin-left: 12px;
623
+ width: 102px;
624
+ height: 102px;
625
+ border: 1px solid #333;
626
+ }
627
+ .es-clients-dialog {
628
+ .el-dialog__header {
629
+ background-color: $--color-primary !important;
630
+ border-bottom-color: $--color-primary !important;
631
+ .el-dialog__title {
632
+ color: #fff;
633
+ }
634
+ .el-dialog__headerbtn .el-icon {
635
+ color: #fff !important;
636
+ &:hover {
637
+ opacity: 0.8;
638
+ }
639
+ }
640
+ }
641
+ .el-dialog__body {
642
+ padding: 0;
643
+ }
644
+ }
645
+ .es-public-drawer-main {
646
+ position: absolute;
647
+ left: 0;
648
+ top: 0;
649
+ right: 0;
650
+ bottom: 0;
651
+ }
652
+
653
+ .es-ai-icon {
654
+ width: 56px;
655
+ height: 56px;
656
+ cursor: move;
657
+ vertical-align: top;
658
+ display: flex;
659
+ align-items: center;
660
+ justify-content: center;
661
+ .es-ai-image {
662
+ width: 56px;
663
+ }
664
+ }