@zgfe/modules-settings 2.0.0-zhongyuan.26 → 2.0.0-zhongyuan.28

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.
@@ -1,373 +1,373 @@
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
- &-row {
195
- display: flex;
196
- flex-direction: row;
197
- gap: 12px;
198
- align-items: center;
199
- height: 34px;
200
- .qingchu {
201
- font-size: 16px;
202
- cursor: pointer;
203
- }
204
- .icon-yasuobao {
205
- font-size: 24px;
206
- }
207
- }
208
- &-tab {
209
- display: flex;
210
- flex: 1 0 0;
211
- gap: 24px;
212
- align-items: flex-start;
213
- padding: 12px 24px 0px 24px;
214
- background: var(--io-n-02, #fafafb);
215
- border-bottom: 1px solid var(--io-N1-, #e6e7ea);
216
- &-item {
217
- display: flex;
218
- flex-direction: column;
219
- align-items: flex-start;
220
- padding-bottom: 10px;
221
- color: #021429;
222
- font-size: 16px;
223
- line-height: 20px; /* 125% */
224
- border-bottom: 2px solid transparent;
225
- cursor: pointer;
226
- }
227
- &-item-select {
228
- display: flex;
229
- flex-direction: column;
230
- align-items: flex-start;
231
- padding-bottom: 10px;
232
- color: #165dff;
233
- font-size: 16px;
234
- line-height: 20px; /* 125% */
235
- border-bottom: 2px solid #165dff;
236
- cursor: pointer;
237
- }
238
- }
239
- &-filter {
240
- display: flex;
241
- flex-direction: row;
242
- gap: 16px;
243
- padding: 1px 0 16px;
244
- .button:not(.disabled) {
245
- color: #1454e5;
246
- border: 1px solid #1454e5;
247
- }
248
- }
249
- }
250
- }
251
- &-right {
252
- margin-left: auto;
253
- &-button {
254
- margin-left: 10px;
255
- }
256
- }
257
- &-tabList {
258
- display: flex;
259
- align-items: center;
260
- color: #9aa1a9;
261
- border-radius: 5px;
262
- // outline: 1px solid #9aa1a9;
263
- &-item {
264
- box-sizing: border-box;
265
- width: 90px;
266
- height: 32px;
267
- line-height: 32px;
268
- text-align: center;
269
- cursor: pointer;
270
- }
271
- &-item:nth-child(1) {
272
- border-top: 1px solid #9aa1a9;
273
- border-bottom: 1px solid #9aa1a9;
274
- border-left: 1px solid #9aa1a9;
275
- border-radius: 2px 0 0 2px;
276
- }
277
- &-item:nth-child(2) {
278
- border-top: 1px solid #9aa1a9;
279
- border-right: 1px solid #9aa1a9;
280
- border-bottom: 1px solid #9aa1a9;
281
- border-radius: 0 2px 2px 0;
282
- }
283
- &-active {
284
- color: #fff;
285
- background-color: #165dff;
286
- border: none !important;
287
- }
288
- }
289
- }
290
- &-drawer {
291
- .ant-drawer-header-title .ant-drawer-close {
292
- position: absolute;
293
- right: 6px;
294
- }
295
- }
296
- &-content-img-select {
297
- position: relative;
298
- display: flex;
299
- align-items: center;
300
- align-self: stretch;
301
- justify-content: center;
302
- width: 80px;
303
- height: 80px;
304
- background: var(--io-n-05, #f2f3f4);
305
- border: 1px solid var(--io-N1-, #e6e7ea);
306
- border-radius: 4px;
307
- img {
308
- max-width: 78px;
309
- max-height: 78px;
310
- }
311
- }
312
- &-comment {
313
- width: 100%;
314
- margin-top: 20px;
315
- &-tab {
316
- display: flex;
317
- align-items: center;
318
- margin: 0 10px 0 20px;
319
- padding-bottom: 10px;
320
- font-size: 16px;
321
- border-bottom: 1px solid #e6e7ea;
322
-
323
- &-btn {
324
- color: #9aa1a9;
325
- font-size: 16px;
326
- cursor: pointer;
327
- }
328
- &-btnActive {
329
- color: #116acc;
330
- font-weight: bold;
331
- }
332
- &-btn + &-btn::before {
333
- display: inline-block;
334
- margin: 0 10px;
335
- color: #9aa1a9;
336
- font-weight: bold;
337
- transform: translateY(-2px);
338
- content: '|';
339
- }
340
- }
341
- &-list {
342
- margin: 0 10px 0 20px;
343
- padding: 10px 0;
344
- border-bottom: 1px solid #e6e7ea;
345
- }
346
- }
347
- &-history {
348
- &-list {
349
- margin: 0 10px 0 20px;
350
- padding: 10px 0;
351
- border-bottom: 1px solid #e6e7ea;
352
- span {
353
- margin: 0 5px;
354
- color: #116acc;
355
- }
356
- }
357
- }
358
- }
359
-
360
- #system-setting-demand {
361
- position: fixed;
362
- z-index: -1000;
363
- width: 100%;
364
- height: 100vh;
365
- margin: 50px;
366
- .x6-graph-background,
367
- .x6-graph-grid,
368
- .x6-graph-svg {
369
- position: relative;
370
- width: 100%;
371
- height: 100vh;
372
- }
373
- }
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
+ &-row {
195
+ display: flex;
196
+ flex-direction: row;
197
+ gap: 12px;
198
+ align-items: center;
199
+ height: 34px;
200
+ .qingchu {
201
+ font-size: 16px;
202
+ cursor: pointer;
203
+ }
204
+ .icon-yasuobao {
205
+ font-size: 24px;
206
+ }
207
+ }
208
+ &-tab {
209
+ display: flex;
210
+ flex: 1 0 0;
211
+ gap: 24px;
212
+ align-items: flex-start;
213
+ padding: 12px 24px 0px 24px;
214
+ background: var(--io-n-02, #fafafb);
215
+ border-bottom: 1px solid var(--io-N1-, #e6e7ea);
216
+ &-item {
217
+ display: flex;
218
+ flex-direction: column;
219
+ align-items: flex-start;
220
+ padding-bottom: 10px;
221
+ color: #021429;
222
+ font-size: 16px;
223
+ line-height: 20px; /* 125% */
224
+ border-bottom: 2px solid transparent;
225
+ cursor: pointer;
226
+ }
227
+ &-item-select {
228
+ display: flex;
229
+ flex-direction: column;
230
+ align-items: flex-start;
231
+ padding-bottom: 10px;
232
+ color: #165dff;
233
+ font-size: 16px;
234
+ line-height: 20px; /* 125% */
235
+ border-bottom: 2px solid #165dff;
236
+ cursor: pointer;
237
+ }
238
+ }
239
+ &-filter {
240
+ display: flex;
241
+ flex-direction: row;
242
+ gap: 16px;
243
+ padding: 1px 0 16px;
244
+ .button:not(.disabled) {
245
+ color: #1454e5;
246
+ border: 1px solid #1454e5;
247
+ }
248
+ }
249
+ }
250
+ }
251
+ &-right {
252
+ margin-left: auto;
253
+ &-button {
254
+ margin-left: 10px;
255
+ }
256
+ }
257
+ &-tabList {
258
+ display: flex;
259
+ align-items: center;
260
+ color: #9aa1a9;
261
+ border-radius: 5px;
262
+ // outline: 1px solid #9aa1a9;
263
+ &-item {
264
+ box-sizing: border-box;
265
+ width: 90px;
266
+ height: 32px;
267
+ line-height: 32px;
268
+ text-align: center;
269
+ cursor: pointer;
270
+ }
271
+ &-item:nth-child(1) {
272
+ border-top: 1px solid #9aa1a9;
273
+ border-bottom: 1px solid #9aa1a9;
274
+ border-left: 1px solid #9aa1a9;
275
+ border-radius: 2px 0 0 2px;
276
+ }
277
+ &-item:nth-child(2) {
278
+ border-top: 1px solid #9aa1a9;
279
+ border-right: 1px solid #9aa1a9;
280
+ border-bottom: 1px solid #9aa1a9;
281
+ border-radius: 0 2px 2px 0;
282
+ }
283
+ &-active {
284
+ color: #fff;
285
+ background-color: #165dff;
286
+ border: none !important;
287
+ }
288
+ }
289
+ }
290
+ &-drawer {
291
+ .ant-drawer-header-title .ant-drawer-close {
292
+ position: absolute;
293
+ right: 6px;
294
+ }
295
+ }
296
+ &-content-img-select {
297
+ position: relative;
298
+ display: flex;
299
+ align-items: center;
300
+ align-self: stretch;
301
+ justify-content: center;
302
+ width: 80px;
303
+ height: 80px;
304
+ background: var(--io-n-05, #f2f3f4);
305
+ border: 1px solid var(--io-N1-, #e6e7ea);
306
+ border-radius: 4px;
307
+ img {
308
+ max-width: 78px;
309
+ max-height: 78px;
310
+ }
311
+ }
312
+ &-comment {
313
+ width: 100%;
314
+ margin-top: 20px;
315
+ &-tab {
316
+ display: flex;
317
+ align-items: center;
318
+ margin: 0 10px 0 20px;
319
+ padding-bottom: 10px;
320
+ font-size: 16px;
321
+ border-bottom: 1px solid #e6e7ea;
322
+
323
+ &-btn {
324
+ color: #9aa1a9;
325
+ font-size: 16px;
326
+ cursor: pointer;
327
+ }
328
+ &-btnActive {
329
+ color: #116acc;
330
+ font-weight: bold;
331
+ }
332
+ &-btn + &-btn::before {
333
+ display: inline-block;
334
+ margin: 0 10px;
335
+ color: #9aa1a9;
336
+ font-weight: bold;
337
+ transform: translateY(-2px);
338
+ content: '|';
339
+ }
340
+ }
341
+ &-list {
342
+ margin: 0 10px 0 20px;
343
+ padding: 10px 0;
344
+ border-bottom: 1px solid #e6e7ea;
345
+ }
346
+ }
347
+ &-history {
348
+ &-list {
349
+ margin: 0 10px 0 20px;
350
+ padding: 10px 0;
351
+ border-bottom: 1px solid #e6e7ea;
352
+ span {
353
+ margin: 0 5px;
354
+ color: #116acc;
355
+ }
356
+ }
357
+ }
358
+ }
359
+
360
+ #system-setting-demand {
361
+ position: fixed;
362
+ z-index: -1000;
363
+ width: 100%;
364
+ height: 100vh;
365
+ margin: 50px;
366
+ .x6-graph-background,
367
+ .x6-graph-grid,
368
+ .x6-graph-svg {
369
+ position: relative;
370
+ width: 100%;
371
+ height: 100vh;
372
+ }
373
+ }