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

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 (31) hide show
  1. package/es/components/importMetaDialog/index.d.ts +11 -0
  2. package/es/components/importMetaDialog/index.js +202 -0
  3. package/es/components/importMetaDialog/styles/index.less +115 -0
  4. package/es/constants/api.d.ts +15 -0
  5. package/es/constants/api.js +18 -0
  6. package/es/modules/createDemand/index.js +1 -1
  7. package/es/modules/demandManage/index.js +2 -2
  8. package/es/modules/pointMap/createMetaDrawer.js +40 -3
  9. package/es/modules/pointMap/pageInfo.js +20 -5
  10. package/es/modules/pointMap/styles/index.less +157 -152
  11. package/es/modules/pointMap/styles/pageInfo.less +439 -426
  12. package/es/modules/pointMap/styles/tree.less +14 -7
  13. package/es/modules/pointMap/tree.js +101 -36
  14. package/es/modules/systemSetting/Dictionary.d.ts +5 -2
  15. package/es/modules/systemSetting/Dictionary.js +54 -370
  16. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.d.ts +9 -0
  17. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/create.js +239 -0
  18. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/css/index.less +47 -0
  19. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.d.ts +4 -0
  20. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/index.js +205 -0
  21. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.d.ts +10 -0
  22. package/es/modules/systemSetting/dictionaryItem/dictionaryManagement/type/index.js +1 -0
  23. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.d.ts +10 -0
  24. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/create.js +126 -0
  25. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/css/index.less +32 -0
  26. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.d.ts +7 -0
  27. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/index.js +251 -0
  28. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.d.ts +9 -0
  29. package/es/modules/systemSetting/dictionaryItem/eventTagManagement/type/index.js +1 -0
  30. package/es/modules/systemSetting/index.js +3 -1
  31. package/package.json +2 -2
@@ -1,426 +1,439 @@
1
- .setting-point-map-page {
2
- width: 100%;
3
- height: 100%;
4
- background-color: #fff;
5
- border-radius: 8px;
6
- > .ant-spin-nested-loading {
7
- height: 100%;
8
- .ant-spin-container {
9
- height: 100%;
10
- }
11
- }
12
- .bianji1-button:hover {
13
- background: rgba(22, 93, 255, 0.04);
14
- border: 1px solid #1454e5;
15
- border-radius: 4px;
16
- }
17
- &-confirm {
18
- .ant-modal-confirm .ant-modal-body {
19
- padding: 24px;
20
- }
21
- .ant-modal-confirm-title {
22
- font-size: 24px !important;
23
- }
24
- .ant-modal-confirm-content {
25
- margin-top: 16px;
26
- }
27
- }
28
- &-header {
29
- display: flex;
30
- flex-direction: row;
31
- align-items: center;
32
- justify-content: space-between;
33
- padding: 16px 24px 16px 0;
34
- border-bottom: 1px solid var(--io-n-05, #f2f3f4);
35
- &-left {
36
- display: flex;
37
- flex: 1 0 0;
38
- gap: 8px;
39
- align-items: center;
40
- height: 24px;
41
- padding: 10px 16px;
42
- color: var(--io-N-, #021429);
43
- font-weight: 400;
44
- font-size: 14px;
45
- font-family: 'PingFang SC';
46
- font-style: normal;
47
- line-height: 22px; /* 157.143% */
48
- border-left: 2px solid var(--io-i-, #165dff);
49
- }
50
- .button:not(.disabled):not(.ant-btn-primary) {
51
- // float: right;
52
- padding: 0 16px;
53
- color: #1454e5;
54
- border: 1px solid #1454e5;
55
- }
56
- }
57
- &-content {
58
- display: flex;
59
- flex-direction: column;
60
- gap: 24px;
61
- height: calc(100% - 65px);
62
- padding: 24px 28px 24px 0;
63
- overflow-y: auto;
64
- &-states-color-icon {
65
- display: inline-block;
66
- width: 6px;
67
- height: 6px;
68
- margin-right: 8px;
69
- margin-bottom: 2px;
70
- border-radius: 3px;
71
- }
72
- &-img-select {
73
- position: relative;
74
- display: flex;
75
- align-items: center;
76
- justify-content: center;
77
- width: 80px;
78
- height: 80px;
79
- color: #9aa1a9;
80
- font-size: 24px;
81
- background: var(--io-n-05, #f2f3f4);
82
- border: 1px solid var(--io-N1-, #e6e7ea);
83
- border-radius: 4px;
84
- img {
85
- max-width: 78px;
86
- max-height: 78px;
87
- }
88
- .ant-image-mask {
89
- border-radius: 4px !important;
90
- }
91
- &-btn {
92
- position: absolute;
93
- right: 0;
94
- bottom: 0;
95
- left: 0;
96
- display: flex;
97
- gap: 8px;
98
- align-items: center;
99
- justify-content: center;
100
- height: 24px;
101
- color: var(--io-W, #fff);
102
- font-size: 14px;
103
- background: rgba(2, 20, 41, 0.5);
104
- border-bottom-right-radius: 4px;
105
- border-bottom-left-radius: 4px;
106
- cursor: pointer;
107
- }
108
- }
109
- }
110
- &-info {
111
- display: flex;
112
- flex-direction: row;
113
- gap: 12px;
114
- align-items: center;
115
- height: 32px;
116
- &-title {
117
- display: flex;
118
- flex-direction: row;
119
- gap: 4px;
120
- justify-content: flex-end;
121
- width: 92px;
122
- color: var(--io-N6-, #67727f);
123
- color: #354354;
124
- font-weight: 400;
125
- font-size: 14px;
126
- line-height: 32px;
127
- text-align: right;
128
- }
129
- &-input {
130
- position: relative;
131
- flex: 1;
132
- .button:not(.disabled):not(.ant-btn-primary) {
133
- // float: right;
134
- padding: 0 16px;
135
- color: #1454e5;
136
- border: 1px solid #1454e5;
137
- }
138
- &-num {
139
- position: absolute;
140
- right: 12px;
141
- bottom: 6px;
142
- color: var(--io-N4-, #9aa1a9);
143
- font-weight: 400;
144
- font-size: 14px;
145
- font-family: 'PingFang SC';
146
- font-style: normal;
147
- line-height: 20px;
148
- }
149
- }
150
- .ant-upload.ant-upload-disabled {
151
- .setting-point-map-page-info-upload {
152
- cursor: not-allowed;
153
- }
154
- }
155
- &-upload {
156
- position: relative;
157
- display: flex;
158
- align-items: center;
159
- justify-content: center;
160
- width: 80px;
161
- height: 80px;
162
- color: #9aa1a9;
163
- background: var(--io-n-05, #f2f3f4);
164
- border: 1px solid var(--io-N1-, #e6e7ea);
165
- border-radius: 4px;
166
- cursor: pointer;
167
- img {
168
- max-width: 78px;
169
- max-height: 78px;
170
- }
171
- .ant-image-mask {
172
- border-radius: 4px !important;
173
- }
174
- .cuowu {
175
- position: absolute;
176
- top: -10px;
177
- right: -10px;
178
- cursor: pointer;
179
- }
180
- .cuowu:hover {
181
- color: #fb5547;
182
- }
183
- .cuowu:before {
184
- background: #fff;
185
- border-radius: 50%;
186
- }
187
- &-tip {
188
- margin-top: 8px;
189
- overflow: hidden;
190
- color: var(--io-N4-, #9aa1a9);
191
- font-weight: 400;
192
- font-size: 14px;
193
- font-family: 'PingFang SC';
194
- font-style: normal;
195
- line-height: 22px; /* 157.143% */
196
- text-overflow: ellipsis;
197
- }
198
- }
199
- &-nav {
200
- display: flex;
201
- align-items: center;
202
- width: 100%;
203
- margin-left: 23px;
204
- padding: 10px;
205
- background-color: #f2f3f4;
206
- border-radius: 5px;
207
- &-item {
208
- position: relative;
209
- cursor: pointer;
210
- }
211
- &-item:hover,
212
- &-itemActive {
213
- color: #1454e5;
214
- text-decoration: underline;
215
- }
216
- &-item + &-item {
217
- margin-left: 20px;
218
- &::before {
219
- position: absolute;
220
- top: 4px;
221
- left: -10px;
222
- display: block;
223
- width: 2px;
224
- height: 15px;
225
- background-color: #021429;
226
- content: '';
227
- }
228
- }
229
- }
230
- }
231
- &-table {
232
- margin-left: 24px;
233
- .ant-table-cell {
234
- height: 50px !important;
235
- // padding: 8px !important;
236
- }
237
- .isShowF2F3F4 td {
238
- background-color: #f2f3f4;
239
- }
240
- }
241
- &-circle-select {
242
- margin-top: -16px;
243
- &-btn {
244
- display: flex;
245
- flex-direction: row;
246
- gap: 16px;
247
- align-items: center;
248
- margin-bottom: 16px;
249
- color: var(--io-N8-, #354354);
250
- font-size: 14px;
251
- }
252
- &-content {
253
- width: 672px;
254
- height: 350px;
255
- overflow-x: auto;
256
- overflow-y: auto;
257
- background: var(--io-n-02, #fafafb);
258
- border: 1px solid var(--io-N1-, #e6e7ea);
259
- border-radius: 4px;
260
- }
261
- }
262
- &-pop {
263
- display: flex;
264
- flex-direction: column;
265
- gap: 15px;
266
- width: 200px;
267
- &-header {
268
- color: var(--io-N-, #021429);
269
- font-weight: 400;
270
- font-size: 14px;
271
- line-height: 22px; /* 157.143% */
272
- }
273
- &-footer {
274
- display: flex;
275
- flex-direction: row;
276
- gap: 8px;
277
- align-items: center;
278
- justify-content: flex-end;
279
- }
280
- }
281
- }
282
- .setting-point-map-record {
283
- &-content {
284
- &-timeList {
285
- position: relative;
286
- display: grid;
287
- grid-template-columns: repeat(5, 1fr);
288
- align-items: flex-end;
289
- padding-left: 60px;
290
- &-box {
291
- position: relative;
292
- height: fit-content;
293
- }
294
- &-nav {
295
- display: flex;
296
- align-items: center;
297
- font-size: 16px;
298
- &::before {
299
- position: absolute;
300
- top: 24px;
301
- left: 5px;
302
- width: 1px;
303
- height: calc(100% - 20px);
304
- background-color: #e0e0e0;
305
- content: '';
306
- }
307
- &-icon {
308
- box-sizing: content-box;
309
- width: 10px;
310
- height: 10px;
311
- margin-right: 20px;
312
- border-radius: 50%;
313
- }
314
- &-name {
315
- color: #5f6085;
316
- font-size: 16px;
317
- transform: translateY(-2px);
318
- }
319
- }
320
- &-list {
321
- margin: 20px 0 20px 30px;
322
- &-item {
323
- display: flex;
324
- align-items: center;
325
- &-icon {
326
- width: 4px;
327
- height: 4px;
328
- margin-right: 5px;
329
- border-radius: 50%;
330
- }
331
- &-text {
332
- color: #5f6085;
333
- font-size: 14px;
334
- &:hover {
335
- color: #165dff;
336
- cursor: pointer;
337
- }
338
- }
339
- }
340
- &-item + &-item {
341
- margin-top: 5px;
342
- }
343
- }
344
- &-popoverList {
345
- display: flex;
346
- align-items: center;
347
- font-size: 14px;
348
- &-label {
349
- color: #242541;
350
- }
351
- &-value {
352
- margin-left: 5px;
353
- color: #4080ff;
354
- }
355
- }
356
- }
357
- &-name {
358
- margin-top: 4px;
359
- padding-top: 4px;
360
- color: #5f6085;
361
- font-size: 16px;
362
- border-top: 1px solid #e0e0e0;
363
- }
364
- }
365
- &-update {
366
- margin-top: 50px;
367
- &-nav {
368
- display: flex;
369
- align-items: center;
370
- margin-bottom: 20px;
371
- font-size: 16px;
372
- &-icon {
373
- width: 2px;
374
- height: 16px;
375
- margin-right: 4px;
376
- background-color: #1454e5;
377
- }
378
- &-title {
379
- color: #021429;
380
- }
381
- &-name {
382
- margin-left: 20px;
383
- color: #9aa1a9;
384
- }
385
- }
386
- &-tabList {
387
- display: flex;
388
- align-items: center;
389
- color: #9aa1a9;
390
- border-radius: 5px;
391
- &-item {
392
- box-sizing: border-box;
393
- width: 90px;
394
- height: 32px;
395
- line-height: 32px;
396
- text-align: center;
397
- cursor: pointer;
398
- }
399
- &-item:nth-child(1) {
400
- border-top: 1px solid #9aa1a9;
401
- border-bottom: 1px solid #9aa1a9;
402
- border-left: 1px solid #9aa1a9;
403
- border-radius: 2px 0 0 2px;
404
- }
405
- &-item:nth-child(2) {
406
- border-top: 1px solid #9aa1a9;
407
- border-right: 1px solid #9aa1a9;
408
- border-bottom: 1px solid #9aa1a9;
409
- border-radius: 0 2px 2px 0;
410
- }
411
- &-active {
412
- color: #fff;
413
- background-color: #165dff;
414
- border: none !important;
415
- }
416
- }
417
- &-text {
418
- overflow: hidden;
419
- white-space: nowrap;
420
- text-overflow: ellipsis;
421
- }
422
- }
423
- &-table {
424
- margin-top: 10px;
425
- }
426
- }
1
+ .setting-point-map-page {
2
+ width: 100%;
3
+ height: 100%;
4
+ background-color: #fff;
5
+ border-radius: 8px;
6
+ > .ant-spin-nested-loading {
7
+ height: 100%;
8
+ .ant-spin-container {
9
+ height: 100%;
10
+ }
11
+ }
12
+ .bianji1-button:hover {
13
+ background: rgba(22, 93, 255, 0.04);
14
+ border: 1px solid #1454e5;
15
+ border-radius: 4px;
16
+ }
17
+ &-confirm {
18
+ .ant-modal-confirm .ant-modal-body {
19
+ padding: 24px;
20
+ }
21
+ .ant-modal-confirm-title {
22
+ font-size: 24px !important;
23
+ }
24
+ .ant-modal-confirm-content {
25
+ margin-top: 16px;
26
+ }
27
+ }
28
+ &-header {
29
+ display: flex;
30
+ flex-direction: row;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ padding: 16px 24px 16px 0;
34
+ border-bottom: 1px solid var(--io-n-05, #f2f3f4);
35
+ &-left {
36
+ display: flex;
37
+ flex: 1 0 0;
38
+ gap: 8px;
39
+ align-items: center;
40
+ height: 24px;
41
+ padding: 10px 16px;
42
+ color: var(--io-N-, #021429);
43
+ font-weight: 400;
44
+ font-size: 14px;
45
+ font-family: 'PingFang SC';
46
+ font-style: normal;
47
+ line-height: 22px; /* 157.143% */
48
+ border-left: 2px solid var(--io-i-, #165dff);
49
+ }
50
+ .button:not(.disabled):not(.ant-btn-primary) {
51
+ // float: right;
52
+ padding: 0 16px;
53
+ color: #1454e5;
54
+ border: 1px solid #1454e5;
55
+ }
56
+ }
57
+ &-content {
58
+ display: flex;
59
+ flex-direction: column;
60
+ gap: 24px;
61
+ height: calc(100% - 65px);
62
+ padding: 24px 28px 24px 0;
63
+ overflow-y: auto;
64
+ &-states-color-icon {
65
+ display: inline-block;
66
+ width: 6px;
67
+ height: 6px;
68
+ margin-right: 8px;
69
+ margin-bottom: 2px;
70
+ border-radius: 3px;
71
+ }
72
+ &-img-select {
73
+ position: relative;
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ width: 80px;
78
+ height: 80px;
79
+ color: #9aa1a9;
80
+ font-size: 24px;
81
+ background: var(--io-n-05, #f2f3f4);
82
+ border: 1px solid var(--io-N1-, #e6e7ea);
83
+ border-radius: 4px;
84
+ img {
85
+ max-width: 78px;
86
+ max-height: 78px;
87
+ }
88
+ .ant-image-mask {
89
+ border-radius: 4px !important;
90
+ }
91
+ &-btn {
92
+ position: absolute;
93
+ right: 0;
94
+ bottom: 0;
95
+ left: 0;
96
+ display: flex;
97
+ gap: 8px;
98
+ align-items: center;
99
+ justify-content: center;
100
+ height: 24px;
101
+ color: var(--io-W, #fff);
102
+ font-size: 14px;
103
+ background: rgba(2, 20, 41, 0.5);
104
+ border-bottom-right-radius: 4px;
105
+ border-bottom-left-radius: 4px;
106
+ cursor: pointer;
107
+ }
108
+ }
109
+ &-popoverTag {
110
+ &-item + &-item {
111
+ margin-top: 10px;
112
+ }
113
+ &-item {
114
+ display: flex;
115
+ align-items: center;
116
+ }
117
+ &-label {
118
+ margin-right: 10px;
119
+ color: #67727f;
120
+ }
121
+ }
122
+ }
123
+ &-info {
124
+ display: flex;
125
+ flex-direction: row;
126
+ gap: 12px;
127
+ align-items: center;
128
+ height: 32px;
129
+ &-title {
130
+ display: flex;
131
+ flex-direction: row;
132
+ gap: 4px;
133
+ justify-content: flex-end;
134
+ width: 92px;
135
+ color: var(--io-N6-, #67727f);
136
+ color: #354354;
137
+ font-weight: 400;
138
+ font-size: 14px;
139
+ line-height: 32px;
140
+ text-align: right;
141
+ }
142
+ &-input {
143
+ position: relative;
144
+ flex: 1;
145
+ .button:not(.disabled):not(.ant-btn-primary) {
146
+ // float: right;
147
+ padding: 0 16px;
148
+ color: #1454e5;
149
+ border: 1px solid #1454e5;
150
+ }
151
+ &-num {
152
+ position: absolute;
153
+ right: 12px;
154
+ bottom: 6px;
155
+ color: var(--io-N4-, #9aa1a9);
156
+ font-weight: 400;
157
+ font-size: 14px;
158
+ font-family: 'PingFang SC';
159
+ font-style: normal;
160
+ line-height: 20px;
161
+ }
162
+ }
163
+ .ant-upload.ant-upload-disabled {
164
+ .setting-point-map-page-info-upload {
165
+ cursor: not-allowed;
166
+ }
167
+ }
168
+ &-upload {
169
+ position: relative;
170
+ display: flex;
171
+ align-items: center;
172
+ justify-content: center;
173
+ width: 80px;
174
+ height: 80px;
175
+ color: #9aa1a9;
176
+ background: var(--io-n-05, #f2f3f4);
177
+ border: 1px solid var(--io-N1-, #e6e7ea);
178
+ border-radius: 4px;
179
+ cursor: pointer;
180
+ img {
181
+ max-width: 78px;
182
+ max-height: 78px;
183
+ }
184
+ .ant-image-mask {
185
+ border-radius: 4px !important;
186
+ }
187
+ .cuowu {
188
+ position: absolute;
189
+ top: -10px;
190
+ right: -10px;
191
+ cursor: pointer;
192
+ }
193
+ .cuowu:hover {
194
+ color: #fb5547;
195
+ }
196
+ .cuowu:before {
197
+ background: #fff;
198
+ border-radius: 50%;
199
+ }
200
+ &-tip {
201
+ margin-top: 8px;
202
+ overflow: hidden;
203
+ color: var(--io-N4-, #9aa1a9);
204
+ font-weight: 400;
205
+ font-size: 14px;
206
+ font-family: 'PingFang SC';
207
+ font-style: normal;
208
+ line-height: 22px; /* 157.143% */
209
+ text-overflow: ellipsis;
210
+ }
211
+ }
212
+ &-nav {
213
+ display: flex;
214
+ align-items: center;
215
+ width: 100%;
216
+ margin-left: 23px;
217
+ padding: 10px;
218
+ background-color: #f2f3f4;
219
+ border-radius: 5px;
220
+ &-item {
221
+ position: relative;
222
+ cursor: pointer;
223
+ }
224
+ &-item:hover,
225
+ &-itemActive {
226
+ color: #1454e5;
227
+ text-decoration: underline;
228
+ }
229
+ &-item + &-item {
230
+ margin-left: 20px;
231
+ &::before {
232
+ position: absolute;
233
+ top: 4px;
234
+ left: -10px;
235
+ display: block;
236
+ width: 2px;
237
+ height: 15px;
238
+ background-color: #021429;
239
+ content: '';
240
+ }
241
+ }
242
+ }
243
+ }
244
+ &-table {
245
+ margin-left: 24px;
246
+ .ant-table-cell {
247
+ height: 50px !important;
248
+ // padding: 8px !important;
249
+ }
250
+ .isShowF2F3F4 td {
251
+ background-color: #f2f3f4;
252
+ }
253
+ }
254
+ &-circle-select {
255
+ margin-top: -16px;
256
+ &-btn {
257
+ display: flex;
258
+ flex-direction: row;
259
+ gap: 16px;
260
+ align-items: center;
261
+ margin-bottom: 16px;
262
+ color: var(--io-N8-, #354354);
263
+ font-size: 14px;
264
+ }
265
+ &-content {
266
+ width: 672px;
267
+ height: 350px;
268
+ overflow-x: auto;
269
+ overflow-y: auto;
270
+ background: var(--io-n-02, #fafafb);
271
+ border: 1px solid var(--io-N1-, #e6e7ea);
272
+ border-radius: 4px;
273
+ }
274
+ }
275
+ &-pop {
276
+ display: flex;
277
+ flex-direction: column;
278
+ gap: 15px;
279
+ width: 200px;
280
+ &-header {
281
+ color: var(--io-N-, #021429);
282
+ font-weight: 400;
283
+ font-size: 14px;
284
+ line-height: 22px; /* 157.143% */
285
+ }
286
+ &-footer {
287
+ display: flex;
288
+ flex-direction: row;
289
+ gap: 8px;
290
+ align-items: center;
291
+ justify-content: flex-end;
292
+ }
293
+ }
294
+ }
295
+ .setting-point-map-record {
296
+ &-content {
297
+ &-timeList {
298
+ position: relative;
299
+ display: grid;
300
+ grid-template-columns: repeat(5, 1fr);
301
+ align-items: flex-end;
302
+ padding-left: 60px;
303
+ &-box {
304
+ position: relative;
305
+ height: fit-content;
306
+ }
307
+ &-nav {
308
+ display: flex;
309
+ align-items: center;
310
+ font-size: 16px;
311
+ &::before {
312
+ position: absolute;
313
+ top: 24px;
314
+ left: 5px;
315
+ width: 1px;
316
+ height: calc(100% - 20px);
317
+ background-color: #e0e0e0;
318
+ content: '';
319
+ }
320
+ &-icon {
321
+ box-sizing: content-box;
322
+ width: 10px;
323
+ height: 10px;
324
+ margin-right: 20px;
325
+ border-radius: 50%;
326
+ }
327
+ &-name {
328
+ color: #5f6085;
329
+ font-size: 16px;
330
+ transform: translateY(-2px);
331
+ }
332
+ }
333
+ &-list {
334
+ margin: 20px 0 20px 30px;
335
+ &-item {
336
+ display: flex;
337
+ align-items: center;
338
+ &-icon {
339
+ width: 4px;
340
+ height: 4px;
341
+ margin-right: 5px;
342
+ border-radius: 50%;
343
+ }
344
+ &-text {
345
+ color: #5f6085;
346
+ font-size: 14px;
347
+ &:hover {
348
+ color: #165dff;
349
+ cursor: pointer;
350
+ }
351
+ }
352
+ }
353
+ &-item + &-item {
354
+ margin-top: 5px;
355
+ }
356
+ }
357
+ &-popoverList {
358
+ display: flex;
359
+ align-items: center;
360
+ font-size: 14px;
361
+ &-label {
362
+ color: #242541;
363
+ }
364
+ &-value {
365
+ margin-left: 5px;
366
+ color: #4080ff;
367
+ }
368
+ }
369
+ }
370
+ &-name {
371
+ margin-top: 4px;
372
+ padding-top: 4px;
373
+ color: #5f6085;
374
+ font-size: 16px;
375
+ border-top: 1px solid #e0e0e0;
376
+ }
377
+ }
378
+ &-update {
379
+ margin-top: 50px;
380
+ &-nav {
381
+ display: flex;
382
+ align-items: center;
383
+ margin-bottom: 20px;
384
+ font-size: 16px;
385
+ &-icon {
386
+ width: 2px;
387
+ height: 16px;
388
+ margin-right: 4px;
389
+ background-color: #1454e5;
390
+ }
391
+ &-title {
392
+ color: #021429;
393
+ }
394
+ &-name {
395
+ margin-left: 20px;
396
+ color: #9aa1a9;
397
+ }
398
+ }
399
+ &-tabList {
400
+ display: flex;
401
+ align-items: center;
402
+ color: #9aa1a9;
403
+ border-radius: 5px;
404
+ &-item {
405
+ box-sizing: border-box;
406
+ width: 90px;
407
+ height: 32px;
408
+ line-height: 32px;
409
+ text-align: center;
410
+ cursor: pointer;
411
+ }
412
+ &-item:nth-child(1) {
413
+ border-top: 1px solid #9aa1a9;
414
+ border-bottom: 1px solid #9aa1a9;
415
+ border-left: 1px solid #9aa1a9;
416
+ border-radius: 2px 0 0 2px;
417
+ }
418
+ &-item:nth-child(2) {
419
+ border-top: 1px solid #9aa1a9;
420
+ border-right: 1px solid #9aa1a9;
421
+ border-bottom: 1px solid #9aa1a9;
422
+ border-radius: 0 2px 2px 0;
423
+ }
424
+ &-active {
425
+ color: #fff;
426
+ background-color: #165dff;
427
+ border: none !important;
428
+ }
429
+ }
430
+ &-text {
431
+ overflow: hidden;
432
+ white-space: nowrap;
433
+ text-overflow: ellipsis;
434
+ }
435
+ }
436
+ &-table {
437
+ margin-top: 10px;
438
+ }
439
+ }