@zgfe/modules-settings 2.1.0-zhongyuan.2 → 2.1.0-zhongyuan.21

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 (33) hide show
  1. package/es/components/importMetaDialog/index.d.ts +2 -0
  2. package/es/components/importMetaDialog/index.js +18 -3
  3. package/es/constants/api.d.ts +4 -0
  4. package/es/constants/api.js +12 -7
  5. package/es/modules/appSettings/dataAccessFilter/index.js +2 -1
  6. package/es/modules/companySetting/application/index.js +5 -6
  7. package/es/modules/companySetting/application/index.less +144 -144
  8. package/es/modules/companySetting/index.js +37 -33
  9. package/es/modules/companySetting/user/index.js +29 -24
  10. package/es/modules/companySetting/user/invite.js +3 -16
  11. package/es/modules/createDemand/demo/selectPoint.js +0 -1
  12. package/es/modules/createDemand/index.js +7 -6
  13. package/es/modules/createDemand/styles/index.less +403 -403
  14. package/es/modules/createDemand_bf/demo/index.js +0 -1
  15. package/es/modules/createDemand_bf/index.js +0 -1
  16. package/es/modules/dealDemand/demo/index.js +0 -1
  17. package/es/modules/dealDemand/index.js +0 -2
  18. package/es/modules/demandManage/styles/index.less +155 -155
  19. package/es/modules/pointMap/createMetaDrawer.js +78 -47
  20. package/es/modules/pointMap/pageInfo.js +28 -15
  21. package/es/modules/pointMap/styles/index.less +8 -0
  22. package/es/modules/pointMap/styles/tree.less +18 -0
  23. package/es/modules/pointMap/tree.js +191 -117
  24. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.js +26 -20
  25. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/css/index.less +3 -2
  26. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.js +10 -8
  27. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.d.ts +2 -2
  28. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.js +7 -9
  29. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.js +29 -16
  30. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.d.ts +1 -1
  31. package/es/modules/systemSetting/document-setting/index.js +7 -6
  32. package/es/modules/systemSetting/index.js +13 -15
  33. package/package.json +3 -3
@@ -1,403 +1,403 @@
1
- .system-setting-create-demand {
2
- display: flex;
3
- flex-direction: column;
4
- height: 100%;
5
- padding: 0 16px 16px;
6
- background: #fafafb;
7
- .forbiddenColor {
8
- background-color: #f2f3f4;
9
- }
10
- .setting-point-map-page-content-img-select {
11
- position: relative;
12
- }
13
- .ant-image {
14
- position: static;
15
- }
16
- .ant-image .ant-image-mask {
17
- color: #fff;
18
- font-size: 24px;
19
- background: rgba(2, 20, 41, 0.5) !important;
20
- }
21
- &-row {
22
- display: flex;
23
- flex: 1;
24
- flex-direction: row;
25
- overflow-y: auto;
26
- }
27
- &-right {
28
- position: relative;
29
- display: flex;
30
- flex: 288;
31
- overflow: hidden;
32
- background: #f2f3f4;
33
- border: 1px solid #e6e7ea;
34
- border-bottom: 0;
35
- border-top-right-radius: 8px;
36
- // border-bottom-right-radius: 8px;
37
- .setting-graph-panel {
38
- right: 14px;
39
- left: auto;
40
- transform: none;
41
- }
42
- &-end {
43
- display: flex;
44
- align-items: center;
45
- justify-content: center;
46
- width: 100%;
47
- }
48
- &-title {
49
- position: absolute;
50
- top: 16px;
51
- left: 16px;
52
- color: var(--io-N-, #021429);
53
- font-weight: 400;
54
- font-size: 14px;
55
- font-family: 'PingFang SC';
56
- font-style: normal;
57
- line-height: 22px; /* 157.143% */
58
- text-align: right;
59
- }
60
- }
61
- &-header {
62
- display: flex;
63
- flex-direction: row;
64
- gap: 16px;
65
- align-items: center;
66
- padding: 12px 0;
67
- color: var(--io-N6-, #67727f);
68
- font-weight: 400;
69
- font-size: 14px;
70
- &-back {
71
- cursor: pointer;
72
- }
73
- }
74
- &-footer {
75
- display: flex;
76
- gap: 16px;
77
- align-items: center;
78
- padding: 18px 24px;
79
- background: #fff;
80
- border-top: 1px solid var(--io-N1-, #e6e7ea);
81
- border-bottom-right-radius: 8px;
82
- border-bottom-left-radius: 8px;
83
- .button:not(.disabled) {
84
- color: #1454e5;
85
- border: 1px solid #1454e5;
86
- }
87
- &-btnRight {
88
- display: flex;
89
- align-items: center;
90
- margin-right: 310px;
91
- margin-left: auto;
92
- .commentBtn {
93
- margin-left: 10px;
94
- }
95
- }
96
- }
97
- &-info {
98
- display: flex;
99
- flex: 912;
100
- flex-direction: column;
101
- gap: 24px;
102
- align-items: flex-start;
103
- padding: 0 0 24px;
104
- overflow: hidden;
105
- overflow-y: auto;
106
- background: #fff;
107
- border-top-left-radius: 8px;
108
- // border-bottom-left-radius: 8px;
109
- &-img {
110
- display: flex;
111
- flex-direction: column;
112
- gap: 24px;
113
- align-items: flex-start;
114
- width: 100%;
115
- padding: 24px 24px 0;
116
- background: #fff;
117
- }
118
- &-item {
119
- display: flex;
120
- flex-direction: row;
121
- // align-items: center;
122
- gap: 12px;
123
- width: 100%;
124
- &-yasuobao {
125
- width: 24px;
126
- height: 24px;
127
- background: url('./../images/yasuobao.png') no-repeat;
128
- background-size: contain;
129
- &-txt:hover {
130
- text-decoration: underline;
131
- }
132
- }
133
- &-txt {
134
- width: 96px;
135
- margin-top: 6px;
136
- color: var(----3, #5f6085);
137
- font-weight: 400;
138
- font-size: 14px;
139
- text-align: right;
140
- span {
141
- margin-right: 4px;
142
- color: var(--io-Error-E-, #fb5547);
143
- font-weight: 400;
144
- font-size: 14px;
145
- }
146
- }
147
- &-content {
148
- position: relative;
149
- flex: 1;
150
- width: calc(100% - 108px);
151
- input,
152
- textarea {
153
- border-color: #fafafb;
154
- }
155
- &-input-num {
156
- position: absolute;
157
- right: 12px;
158
- bottom: 6px;
159
- color: var(--io-N4-, #9aa1a9);
160
- font-weight: 400;
161
- font-size: 14px;
162
- }
163
- &-picker {
164
- width: 100%;
165
- background-color: #fafafb;
166
- }
167
- .ant-upload-disabled .system-setting-create-demand-info-item-content-btn {
168
- color: #ccd0d4;
169
- }
170
- &-btn {
171
- display: flex;
172
- gap: 8px;
173
- align-items: center;
174
- height: 32px;
175
- padding: 10px 16px;
176
- color: var(--io-N-, #021429);
177
- font-weight: 400;
178
- font-size: 14px;
179
- font-family: 'PingFang SC';
180
- font-style: normal;
181
- line-height: normal;
182
- background: var(--io-n-05, #f2f3f4);
183
- border: 1px dashed var(--io-N1-, #e6e7ea);
184
- border-radius: 4px;
185
- }
186
- &-tip {
187
- color: var(--io-N4-, #9aa1a9);
188
- font-weight: 400;
189
- font-size: 14px;
190
- font-family: 'PingFang SC';
191
- font-style: normal;
192
- line-height: normal;
193
- }
194
- &-ptxt {
195
- display: block;
196
- transform: translateY(6px);
197
- }
198
- &-row {
199
- display: flex;
200
- flex-direction: row;
201
- gap: 12px;
202
- align-items: center;
203
- height: 34px;
204
- .qingchu {
205
- font-size: 16px;
206
- cursor: pointer;
207
- }
208
- .icon-yasuobao {
209
- font-size: 24px;
210
- }
211
- }
212
- &-tab {
213
- display: flex;
214
- flex: 1 0 0;
215
- gap: 24px;
216
- align-items: flex-start;
217
- padding: 12px 24px 0px 24px;
218
- background: var(--io-n-02, #fafafb);
219
- border-bottom: 1px solid var(--io-N1-, #e6e7ea);
220
- &-item {
221
- display: flex;
222
- flex-direction: column;
223
- align-items: flex-start;
224
- padding-bottom: 10px;
225
- color: #021429;
226
- font-size: 16px;
227
- line-height: 20px; /* 125% */
228
- border-bottom: 2px solid transparent;
229
- cursor: pointer;
230
- }
231
- &-item-select {
232
- display: flex;
233
- flex-direction: column;
234
- align-items: flex-start;
235
- padding-bottom: 10px;
236
- color: #165dff;
237
- font-size: 16px;
238
- line-height: 20px; /* 125% */
239
- border-bottom: 2px solid #165dff;
240
- cursor: pointer;
241
- }
242
- }
243
- &-filter {
244
- display: flex;
245
- flex-direction: row;
246
- gap: 16px;
247
- padding: 1px 0 16px;
248
- .button:not(.disabled) {
249
- color: #1454e5;
250
- border: 1px solid #1454e5;
251
- }
252
- }
253
- &-content {
254
- min-height: 300px;
255
- }
256
- }
257
- }
258
- &-right {
259
- margin-left: auto;
260
- &-button {
261
- margin-left: 10px;
262
- }
263
- }
264
- &-tabList {
265
- display: flex;
266
- align-items: center;
267
- color: #9aa1a9;
268
- border-radius: 5px;
269
- // outline: 1px solid #9aa1a9;
270
- &-item {
271
- box-sizing: border-box;
272
- width: 90px;
273
- height: 32px;
274
- line-height: 32px;
275
- text-align: center;
276
- cursor: pointer;
277
- }
278
- &-item:nth-child(1) {
279
- border-top: 1px solid #9aa1a9;
280
- border-bottom: 1px solid #9aa1a9;
281
- border-left: 1px solid #9aa1a9;
282
- border-radius: 2px 0 0 2px;
283
- }
284
- &-item:nth-child(2) {
285
- border-top: 1px solid #9aa1a9;
286
- border-right: 1px solid #9aa1a9;
287
- border-bottom: 1px solid #9aa1a9;
288
- border-radius: 0 2px 2px 0;
289
- }
290
- &-active {
291
- color: #fff;
292
- background-color: #165dff;
293
- border: none !important;
294
- }
295
- }
296
- }
297
- &-drawer {
298
- .ant-drawer-header-title .ant-drawer-close {
299
- position: absolute;
300
- right: 6px;
301
- }
302
- }
303
- &-content-img-select {
304
- position: relative;
305
- display: flex;
306
- align-items: center;
307
- align-self: stretch;
308
- justify-content: center;
309
- width: 80px;
310
- height: 80px;
311
- background: var(--io-n-05, #f2f3f4);
312
- border: 1px solid var(--io-N1-, #e6e7ea);
313
- border-radius: 4px;
314
- img {
315
- max-width: 78px;
316
- max-height: 78px;
317
- }
318
- }
319
- &-comment {
320
- width: 100%;
321
- margin-top: 20px;
322
- &-tab {
323
- display: flex;
324
- align-items: center;
325
- margin: 0 10px 0 20px;
326
- padding-bottom: 10px;
327
- font-size: 16px;
328
- border-bottom: 1px solid #e6e7ea;
329
-
330
- &-btn {
331
- color: #9aa1a9;
332
- font-size: 16px;
333
- cursor: pointer;
334
- }
335
- &-btnActive {
336
- color: #116acc;
337
- font-weight: bold;
338
- }
339
- &-btn + &-btn::before {
340
- display: inline-block;
341
- margin: 0 10px;
342
- color: #9aa1a9;
343
- font-weight: bold;
344
- transform: translateY(-2px);
345
- content: '|';
346
- }
347
- }
348
- &-empty {
349
- min-height: 200px;
350
- color: #9aa1a9;
351
- font-size: 16px;
352
- line-height: 200px;
353
- text-align: center;
354
- }
355
- &-list {
356
- margin: 0 10px 0 20px;
357
- padding: 10px 0;
358
- border-bottom: 1px solid #e6e7ea;
359
- &-time {
360
- margin-left: 10px;
361
- color: #9aa1a9;
362
- font-size: 12px;
363
- }
364
- &-text {
365
- margin-top: 5px;
366
- color: #9aa1a9;
367
- font-size: 12px;
368
- }
369
- }
370
- &-content {
371
- min-height: 200px;
372
- // max-height: 400px;
373
- // overflow-y:auto ;
374
- // overflow-x: hidden;
375
- }
376
- }
377
- &-history {
378
- &-list {
379
- margin: 0 10px 0 20px;
380
- padding: 10px 0;
381
- border-bottom: 1px solid #e6e7ea;
382
- span {
383
- margin: 0 5px;
384
- color: #116acc;
385
- }
386
- }
387
- }
388
- }
389
-
390
- #system-setting-demand {
391
- position: fixed;
392
- z-index: -1000;
393
- width: 100%;
394
- height: 100vh;
395
- margin: 50px;
396
- .x6-graph-background,
397
- .x6-graph-grid,
398
- .x6-graph-svg {
399
- position: relative;
400
- width: 100%;
401
- height: 100vh;
402
- }
403
- }
1
+ .system-setting-create-demand {
2
+ display: flex;
3
+ flex-direction: column;
4
+ height: 100%;
5
+ padding: 0 16px 16px;
6
+ background: #fafafb;
7
+ .forbiddenColor {
8
+ background-color: #f2f3f4;
9
+ }
10
+ .setting-point-map-page-content-img-select {
11
+ position: relative;
12
+ }
13
+ .ant-image {
14
+ position: static;
15
+ }
16
+ .ant-image .ant-image-mask {
17
+ color: #fff;
18
+ font-size: 24px;
19
+ background: rgba(2, 20, 41, 0.5) !important;
20
+ }
21
+ &-row {
22
+ display: flex;
23
+ flex: 1;
24
+ flex-direction: row;
25
+ overflow-y: auto;
26
+ }
27
+ &-right {
28
+ position: relative;
29
+ display: flex;
30
+ flex: 288;
31
+ overflow: hidden;
32
+ background: #f2f3f4;
33
+ border: 1px solid #e6e7ea;
34
+ border-bottom: 0;
35
+ border-top-right-radius: 8px;
36
+ // border-bottom-right-radius: 8px;
37
+ .setting-graph-panel {
38
+ right: 14px;
39
+ left: auto;
40
+ transform: none;
41
+ }
42
+ &-end {
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ width: 100%;
47
+ }
48
+ &-title {
49
+ position: absolute;
50
+ top: 16px;
51
+ left: 16px;
52
+ color: var(--io-N-, #021429);
53
+ font-weight: 400;
54
+ font-size: 14px;
55
+ font-family: 'PingFang SC';
56
+ font-style: normal;
57
+ line-height: 22px; /* 157.143% */
58
+ text-align: right;
59
+ }
60
+ }
61
+ &-header {
62
+ display: flex;
63
+ flex-direction: row;
64
+ gap: 16px;
65
+ align-items: center;
66
+ padding: 12px 0;
67
+ color: var(--io-N6-, #67727f);
68
+ font-weight: 400;
69
+ font-size: 14px;
70
+ &-back {
71
+ cursor: pointer;
72
+ }
73
+ }
74
+ &-footer {
75
+ display: flex;
76
+ gap: 16px;
77
+ align-items: center;
78
+ padding: 18px 24px;
79
+ background: #fff;
80
+ border-top: 1px solid var(--io-N1-, #e6e7ea);
81
+ border-bottom-right-radius: 8px;
82
+ border-bottom-left-radius: 8px;
83
+ .button:not(.disabled) {
84
+ color: #1454e5;
85
+ border: 1px solid #1454e5;
86
+ }
87
+ &-btnRight {
88
+ display: flex;
89
+ align-items: center;
90
+ margin-right: 310px;
91
+ margin-left: auto;
92
+ .commentBtn {
93
+ margin-left: 10px;
94
+ }
95
+ }
96
+ }
97
+ &-info {
98
+ display: flex;
99
+ flex: 912;
100
+ flex-direction: column;
101
+ gap: 24px;
102
+ align-items: flex-start;
103
+ padding: 0 0 24px;
104
+ overflow: hidden;
105
+ overflow-y: auto;
106
+ background: #fff;
107
+ border-top-left-radius: 8px;
108
+ // border-bottom-left-radius: 8px;
109
+ &-img {
110
+ display: flex;
111
+ flex-direction: column;
112
+ gap: 24px;
113
+ align-items: flex-start;
114
+ width: 100%;
115
+ padding: 24px 24px 0;
116
+ background: #fff;
117
+ }
118
+ &-item {
119
+ display: flex;
120
+ flex-direction: row;
121
+ // align-items: center;
122
+ gap: 12px;
123
+ width: 100%;
124
+ &-yasuobao {
125
+ width: 24px;
126
+ height: 24px;
127
+ background: url('./../images/yasuobao.png') no-repeat;
128
+ background-size: contain;
129
+ &-txt:hover {
130
+ text-decoration: underline;
131
+ }
132
+ }
133
+ &-txt {
134
+ width: 96px;
135
+ margin-top: 6px;
136
+ color: var(----3, #5f6085);
137
+ font-weight: 400;
138
+ font-size: 14px;
139
+ text-align: right;
140
+ span {
141
+ margin-right: 4px;
142
+ color: var(--io-Error-E-, #fb5547);
143
+ font-weight: 400;
144
+ font-size: 14px;
145
+ }
146
+ }
147
+ &-content {
148
+ position: relative;
149
+ flex: 1;
150
+ width: calc(100% - 108px);
151
+ input,
152
+ textarea {
153
+ border-color: #fafafb;
154
+ }
155
+ &-input-num {
156
+ position: absolute;
157
+ right: 12px;
158
+ bottom: 6px;
159
+ color: var(--io-N4-, #9aa1a9);
160
+ font-weight: 400;
161
+ font-size: 14px;
162
+ }
163
+ &-picker {
164
+ width: 100%;
165
+ background-color: #fafafb;
166
+ }
167
+ .ant-upload-disabled .system-setting-create-demand-info-item-content-btn {
168
+ color: #ccd0d4;
169
+ }
170
+ &-btn {
171
+ display: flex;
172
+ gap: 8px;
173
+ align-items: center;
174
+ height: 32px;
175
+ padding: 10px 16px;
176
+ color: var(--io-N-, #021429);
177
+ font-weight: 400;
178
+ font-size: 14px;
179
+ font-family: 'PingFang SC';
180
+ font-style: normal;
181
+ line-height: normal;
182
+ background: var(--io-n-05, #f2f3f4);
183
+ border: 1px dashed var(--io-N1-, #e6e7ea);
184
+ border-radius: 4px;
185
+ }
186
+ &-tip {
187
+ color: var(--io-N4-, #9aa1a9);
188
+ font-weight: 400;
189
+ font-size: 14px;
190
+ font-family: 'PingFang SC';
191
+ font-style: normal;
192
+ line-height: normal;
193
+ }
194
+ &-ptxt {
195
+ display: block;
196
+ transform: translateY(6px);
197
+ }
198
+ &-row {
199
+ display: flex;
200
+ flex-direction: row;
201
+ gap: 12px;
202
+ align-items: center;
203
+ height: 34px;
204
+ .qingchu {
205
+ font-size: 16px;
206
+ cursor: pointer;
207
+ }
208
+ .icon-yasuobao {
209
+ font-size: 24px;
210
+ }
211
+ }
212
+ &-tab {
213
+ display: flex;
214
+ flex: 1 0 0;
215
+ gap: 24px;
216
+ align-items: flex-start;
217
+ padding: 12px 24px 0px 24px;
218
+ background: var(--io-n-02, #fafafb);
219
+ border-bottom: 1px solid var(--io-N1-, #e6e7ea);
220
+ &-item {
221
+ display: flex;
222
+ flex-direction: column;
223
+ align-items: flex-start;
224
+ padding-bottom: 10px;
225
+ color: #021429;
226
+ font-size: 16px;
227
+ line-height: 20px; /* 125% */
228
+ border-bottom: 2px solid transparent;
229
+ cursor: pointer;
230
+ }
231
+ &-item-select {
232
+ display: flex;
233
+ flex-direction: column;
234
+ align-items: flex-start;
235
+ padding-bottom: 10px;
236
+ color: #165dff;
237
+ font-size: 16px;
238
+ line-height: 20px; /* 125% */
239
+ border-bottom: 2px solid #165dff;
240
+ cursor: pointer;
241
+ }
242
+ }
243
+ &-filter {
244
+ display: flex;
245
+ flex-direction: row;
246
+ gap: 16px;
247
+ padding: 1px 0 16px;
248
+ .button:not(.disabled) {
249
+ color: #1454e5;
250
+ border: 1px solid #1454e5;
251
+ }
252
+ }
253
+ &-content {
254
+ min-height: 300px;
255
+ }
256
+ }
257
+ }
258
+ &-right {
259
+ margin-left: auto;
260
+ &-button {
261
+ margin-left: 10px;
262
+ }
263
+ }
264
+ &-tabList {
265
+ display: flex;
266
+ align-items: center;
267
+ color: #9aa1a9;
268
+ border-radius: 5px;
269
+ // outline: 1px solid #9aa1a9;
270
+ &-item {
271
+ box-sizing: border-box;
272
+ width: 90px;
273
+ height: 32px;
274
+ line-height: 32px;
275
+ text-align: center;
276
+ cursor: pointer;
277
+ }
278
+ &-item:nth-child(1) {
279
+ border-top: 1px solid #9aa1a9;
280
+ border-bottom: 1px solid #9aa1a9;
281
+ border-left: 1px solid #9aa1a9;
282
+ border-radius: 2px 0 0 2px;
283
+ }
284
+ &-item:nth-child(2) {
285
+ border-top: 1px solid #9aa1a9;
286
+ border-right: 1px solid #9aa1a9;
287
+ border-bottom: 1px solid #9aa1a9;
288
+ border-radius: 0 2px 2px 0;
289
+ }
290
+ &-active {
291
+ color: #fff;
292
+ background-color: #165dff;
293
+ border: none !important;
294
+ }
295
+ }
296
+ }
297
+ &-drawer {
298
+ .ant-drawer-header-title .ant-drawer-close {
299
+ position: absolute;
300
+ right: 6px;
301
+ }
302
+ }
303
+ &-content-img-select {
304
+ position: relative;
305
+ display: flex;
306
+ align-items: center;
307
+ align-self: stretch;
308
+ justify-content: center;
309
+ width: 80px;
310
+ height: 80px;
311
+ background: var(--io-n-05, #f2f3f4);
312
+ border: 1px solid var(--io-N1-, #e6e7ea);
313
+ border-radius: 4px;
314
+ img {
315
+ max-width: 78px;
316
+ max-height: 78px;
317
+ }
318
+ }
319
+ &-comment {
320
+ width: 100%;
321
+ margin-top: 20px;
322
+ &-tab {
323
+ display: flex;
324
+ align-items: center;
325
+ margin: 0 10px 0 20px;
326
+ padding-bottom: 10px;
327
+ font-size: 16px;
328
+ border-bottom: 1px solid #e6e7ea;
329
+
330
+ &-btn {
331
+ color: #9aa1a9;
332
+ font-size: 16px;
333
+ cursor: pointer;
334
+ }
335
+ &-btnActive {
336
+ color: #116acc;
337
+ font-weight: bold;
338
+ }
339
+ &-btn + &-btn::before {
340
+ display: inline-block;
341
+ margin: 0 10px;
342
+ color: #9aa1a9;
343
+ font-weight: bold;
344
+ transform: translateY(-2px);
345
+ content: '|';
346
+ }
347
+ }
348
+ &-empty {
349
+ min-height: 200px;
350
+ color: #9aa1a9;
351
+ font-size: 16px;
352
+ line-height: 200px;
353
+ text-align: center;
354
+ }
355
+ &-list {
356
+ margin: 0 10px 0 20px;
357
+ padding: 10px 0;
358
+ border-bottom: 1px solid #e6e7ea;
359
+ &-time {
360
+ margin-left: 10px;
361
+ color: #9aa1a9;
362
+ font-size: 12px;
363
+ }
364
+ &-text {
365
+ margin-top: 5px;
366
+ color: #9aa1a9;
367
+ font-size: 12px;
368
+ }
369
+ }
370
+ &-content {
371
+ min-height: 200px;
372
+ // max-height: 400px;
373
+ // overflow-y:auto ;
374
+ // overflow-x: hidden;
375
+ }
376
+ }
377
+ &-history {
378
+ &-list {
379
+ margin: 0 10px 0 20px;
380
+ padding: 10px 0;
381
+ border-bottom: 1px solid #e6e7ea;
382
+ span {
383
+ margin: 0 5px;
384
+ color: #116acc;
385
+ }
386
+ }
387
+ }
388
+ }
389
+
390
+ #system-setting-demand {
391
+ position: fixed;
392
+ z-index: -1000;
393
+ width: 100%;
394
+ height: 100vh;
395
+ margin: 50px;
396
+ .x6-graph-background,
397
+ .x6-graph-grid,
398
+ .x6-graph-svg {
399
+ position: relative;
400
+ width: 100%;
401
+ height: 100vh;
402
+ }
403
+ }