@yeepay/fmc-material 0.0.5 → 0.0.7-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +18229 -5061
- package/dist/styles/beneficiary.less +35 -0
- package/dist/styles/bindMerchant.less +17 -0
- package/dist/styles/charge.less +9 -0
- package/dist/styles/index.less +8 -0
- package/dist/styles/product.less +262 -73
- package/dist/styles/renewForm.less +3 -0
- package/dist/styles/select.less +25 -0
- package/dist/styles/serviceLevel.less +49 -0
- package/dist/styles/style.css +1 -1
- package/dist/styles/subCard.less +18 -0
- package/package.json +1 -1
- package/types/component-meta.d.ts +45 -5
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.yee-beneficiary-wrapper {
|
|
2
|
+
width: 100%;
|
|
3
|
+
.beneficiary {
|
|
4
|
+
background: #FFFFFF;
|
|
5
|
+
border-radius: 8px;
|
|
6
|
+
padding: 24px;
|
|
7
|
+
.header {
|
|
8
|
+
margin-bottom: 20px;
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
.title {
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
color: #333333;
|
|
15
|
+
line-height: 24px;
|
|
16
|
+
margin-right: 12px;
|
|
17
|
+
}
|
|
18
|
+
.desc {
|
|
19
|
+
font-weight: 400;
|
|
20
|
+
font-size: 12px;
|
|
21
|
+
color: #999999;
|
|
22
|
+
line-height: 24px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.footer {
|
|
26
|
+
height: 40px;
|
|
27
|
+
background: #FFFFFF;
|
|
28
|
+
border-radius: 4px;
|
|
29
|
+
border: 1px solid #1E75FF;
|
|
30
|
+
text-align: center;
|
|
31
|
+
line-height: 40px;
|
|
32
|
+
margin-top: 8px;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.yee-bindMerchant-wrapper {
|
|
2
|
+
width: 100%;
|
|
3
|
+
.bindMerchant {
|
|
4
|
+
.footer {
|
|
5
|
+
height: 40px;
|
|
6
|
+
background: #FFFFFF;
|
|
7
|
+
border-radius: 4px;
|
|
8
|
+
border: 1px solid #1E75FF;
|
|
9
|
+
text-align: center;
|
|
10
|
+
line-height: 40px;
|
|
11
|
+
margin-top: 8px;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.ant-table-small>.ant-table-content>.ant-table-body {
|
|
15
|
+
margin: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
package/dist/styles/index.less
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
@import 'serviceLevel.less';
|
|
1
2
|
@import 'upload.less';
|
|
2
3
|
@import 'product.less';
|
|
4
|
+
@import 'beneficiary.less';
|
|
5
|
+
@import 'select.less';
|
|
6
|
+
@import 'charge.less';
|
|
7
|
+
@import 'subCard.less';
|
|
8
|
+
@import 'renewForm.less';
|
|
9
|
+
@import 'bindMerchant.less';
|
|
10
|
+
|
|
3
11
|
|
|
4
12
|
@import 'style.css';
|
package/dist/styles/product.less
CHANGED
|
@@ -1,11 +1,26 @@
|
|
|
1
1
|
.yee-product-wrapper {
|
|
2
|
+
width: 100%;
|
|
3
|
+
@media screen and (max-width: 500px) {
|
|
4
|
+
.offline {
|
|
5
|
+
margin-right: 0 !important;
|
|
6
|
+
}
|
|
7
|
+
.ant-table-small.ant-table-bordered {
|
|
8
|
+
border-right: 1px solid #e8e8e8 !important;
|
|
9
|
+
}
|
|
10
|
+
.ant-table-small.ant-table-bordered .ant-table-content {
|
|
11
|
+
border-right: 0px !important;
|
|
12
|
+
}
|
|
13
|
+
.scene-wrap {
|
|
14
|
+
display: block !important;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
2
17
|
.scene-wrap {
|
|
3
18
|
display: flex;
|
|
4
|
-
|
|
5
|
-
.
|
|
19
|
+
flex-wrap: wrap;
|
|
20
|
+
.offline {
|
|
6
21
|
margin-right: 16px;
|
|
7
|
-
}
|
|
8
22
|
|
|
23
|
+
}
|
|
9
24
|
.online,
|
|
10
25
|
.offline {
|
|
11
26
|
display: flex;
|
|
@@ -13,23 +28,20 @@
|
|
|
13
28
|
cursor: pointer;
|
|
14
29
|
margin-bottom: 16px;
|
|
15
30
|
align-items: center;
|
|
16
|
-
height: 160px;
|
|
17
31
|
background: #FFFFFF;
|
|
18
32
|
border-radius: 8px;
|
|
19
33
|
padding: 32px 40px;
|
|
20
34
|
box-shadow: 0px 1px 1px 0px rgba(190, 190, 190, 0.5), inset 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
|
|
21
35
|
border-radius: 8px;
|
|
22
|
-
border: 1px solid;
|
|
23
|
-
border-image: linear-gradient(360deg, rgba(248, 248, 248, 1), rgba(239, 239, 239, 1)) 1 1;
|
|
24
36
|
|
|
25
37
|
.icon {
|
|
26
|
-
width:
|
|
27
|
-
height:
|
|
28
|
-
background: rgba(22, 119, 255, 0.1);
|
|
38
|
+
width: 88px;
|
|
39
|
+
height: 88px;
|
|
29
40
|
border-radius: 50%;
|
|
30
41
|
margin-right: 32px;
|
|
31
|
-
line-height:
|
|
42
|
+
line-height: 88px;
|
|
32
43
|
text-align: center;
|
|
44
|
+
flex-shrink: 0;
|
|
33
45
|
}
|
|
34
46
|
|
|
35
47
|
.content-wrap {
|
|
@@ -51,43 +63,68 @@
|
|
|
51
63
|
line-height: 22px;
|
|
52
64
|
}
|
|
53
65
|
}
|
|
66
|
+
|
|
67
|
+
.check-img {
|
|
68
|
+
display: none;
|
|
69
|
+
}
|
|
54
70
|
}
|
|
55
71
|
|
|
56
72
|
.active {
|
|
57
73
|
border: 1px solid #2492FC;
|
|
58
74
|
position: relative;
|
|
59
75
|
|
|
60
|
-
|
|
76
|
+
.check-img {
|
|
77
|
+
display: inline-block;
|
|
61
78
|
position: absolute;
|
|
62
|
-
content: '';
|
|
63
|
-
top: 0;
|
|
64
79
|
right: 0;
|
|
65
|
-
|
|
80
|
+
top: 0;
|
|
66
81
|
width: 40px;
|
|
67
82
|
height: 40px;
|
|
68
83
|
}
|
|
69
84
|
}
|
|
70
|
-
}
|
|
71
85
|
|
|
86
|
+
.disabled {
|
|
87
|
+
background: #FAFAFA;
|
|
88
|
+
box-shadow: 0px 1px 1px 0px rgba(190, 190, 190, 0.5);
|
|
89
|
+
border-image: linear-gradient(360deg, rgba(248, 248, 248, 1), rgba(239, 239, 239, 1)) 1 1;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
72
92
|
.custom-check-box-wrap {
|
|
73
93
|
background: #FFFFFF;
|
|
74
94
|
border-radius: 8px;
|
|
75
95
|
border: 1px solid;
|
|
76
96
|
border-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
|
|
77
|
-
margin-bottom: 16px;
|
|
78
97
|
padding: 24px;
|
|
98
|
+
padding-bottom: 12px;
|
|
99
|
+
margin-bottom: 16px;
|
|
100
|
+
|
|
101
|
+
.check-box-line {
|
|
102
|
+
border-top: 1px dashed #D8D8D8;
|
|
103
|
+
margin-bottom: 12px;
|
|
104
|
+
}
|
|
79
105
|
|
|
80
106
|
.title {
|
|
81
107
|
font-weight: 500;
|
|
82
108
|
font-size: 16px;
|
|
83
109
|
color: #333333;
|
|
84
110
|
line-height: 24px;
|
|
85
|
-
margin-bottom:
|
|
111
|
+
margin-bottom: 4px;
|
|
112
|
+
display: flex;
|
|
113
|
+
justify-content: space-between;
|
|
114
|
+
align-items: center;
|
|
115
|
+
}
|
|
116
|
+
.title-desc {
|
|
117
|
+
font-size: 12px;
|
|
118
|
+
color: #666;
|
|
119
|
+
margin-bottom: 12px;
|
|
120
|
+
.title-desc-icon {
|
|
121
|
+
color: #1E75FF;
|
|
122
|
+
margin-right: 2px;
|
|
123
|
+
}
|
|
86
124
|
}
|
|
87
|
-
|
|
88
125
|
.check-list {
|
|
89
126
|
.check-item {
|
|
90
|
-
margin-bottom:
|
|
127
|
+
margin-bottom: 12px;
|
|
91
128
|
line-height: 22px;
|
|
92
129
|
display: flex;
|
|
93
130
|
align-items: flex-start;
|
|
@@ -105,8 +142,89 @@
|
|
|
105
142
|
}
|
|
106
143
|
}
|
|
107
144
|
|
|
145
|
+
.qualification-total {
|
|
146
|
+
background: #FFFFFF;
|
|
147
|
+
border-radius: 8px;
|
|
148
|
+
padding: 24px;
|
|
149
|
+
padding-bottom: 16px;
|
|
150
|
+
margin-bottom: 12px;
|
|
151
|
+
|
|
152
|
+
.total-title {
|
|
153
|
+
font-weight: 500;
|
|
154
|
+
font-size: 16px;
|
|
155
|
+
color: #333333;
|
|
156
|
+
line-height: 24px;
|
|
157
|
+
margin-bottom: 12px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.qualification-group-item {
|
|
161
|
+
margin-bottom: 0px;
|
|
162
|
+
padding: 0;
|
|
163
|
+
padding-left: 12px;
|
|
164
|
+
.qualification-group-title {
|
|
165
|
+
font-weight: 500;
|
|
166
|
+
font-size: 16px;
|
|
167
|
+
color: #333333;
|
|
168
|
+
line-height: 24px;
|
|
169
|
+
position: relative;
|
|
170
|
+
&::before {
|
|
171
|
+
content: '';
|
|
172
|
+
position: absolute;
|
|
173
|
+
top: 6px;
|
|
174
|
+
left: -8px;
|
|
175
|
+
width: 2px;
|
|
176
|
+
height: 11px;
|
|
177
|
+
background-color: #40a9ff;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
.qualification-group-item-wrap {
|
|
182
|
+
padding: 12px;
|
|
183
|
+
background-color: #FBFCFF;
|
|
184
|
+
padding-left: 24px;
|
|
185
|
+
margin-bottom: 12px;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.qualification-group-item {
|
|
190
|
+
background: #FFFFFF;
|
|
191
|
+
border-radius: 8px;
|
|
192
|
+
padding: 24px;
|
|
193
|
+
padding-bottom: 12px;
|
|
194
|
+
margin-bottom: 12px;
|
|
195
|
+
.total-title {
|
|
196
|
+
font-weight: 500;
|
|
197
|
+
font-size: 16px;
|
|
198
|
+
color: #333333;
|
|
199
|
+
line-height: 24px;
|
|
200
|
+
margin-bottom: 12px;
|
|
201
|
+
}
|
|
202
|
+
.qualification-group-title {
|
|
203
|
+
font-weight: 500;
|
|
204
|
+
font-size: 16px;
|
|
205
|
+
color: #333333;
|
|
206
|
+
line-height: 24px;
|
|
207
|
+
margin-bottom: 12px;
|
|
208
|
+
}
|
|
209
|
+
.ant-form-item {
|
|
210
|
+
margin-bottom: 12px;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.qualification-tip {
|
|
215
|
+
font-size: 12px;
|
|
216
|
+
line-height: 20px;
|
|
217
|
+
word-break: break-all;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.product-card-content {
|
|
221
|
+
.qualification-group-item {
|
|
222
|
+
padding: 0;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
108
226
|
.product-card-wrap {
|
|
109
|
-
margin-bottom:
|
|
227
|
+
margin-bottom: 12px;
|
|
110
228
|
|
|
111
229
|
.title {
|
|
112
230
|
font-weight: 500;
|
|
@@ -132,6 +250,7 @@
|
|
|
132
250
|
background: #FFFFFF;
|
|
133
251
|
border-radius: 8px;
|
|
134
252
|
padding: 24px;
|
|
253
|
+
margin-bottom: 12px;
|
|
135
254
|
|
|
136
255
|
.sub-title {
|
|
137
256
|
font-weight: 500;
|
|
@@ -179,6 +298,10 @@
|
|
|
179
298
|
border-radius: 50%;
|
|
180
299
|
}
|
|
181
300
|
}
|
|
301
|
+
.has-error .ant-form-explain {
|
|
302
|
+
margin-bottom: -8px;
|
|
303
|
+
float: none;
|
|
304
|
+
}
|
|
182
305
|
}
|
|
183
306
|
}
|
|
184
307
|
|
|
@@ -196,10 +319,11 @@
|
|
|
196
319
|
.ladder-left {
|
|
197
320
|
background: #FAFAFA;
|
|
198
321
|
border-radius: 8px;
|
|
199
|
-
padding: 16px
|
|
322
|
+
padding: 16px 16px;
|
|
200
323
|
display: flex;
|
|
201
324
|
align-items: flex-start;
|
|
202
|
-
margin-right:
|
|
325
|
+
margin-right: 14px;
|
|
326
|
+
flex: 1;
|
|
203
327
|
|
|
204
328
|
.tip {
|
|
205
329
|
font-weight: 400;
|
|
@@ -207,12 +331,17 @@
|
|
|
207
331
|
color: #666666;
|
|
208
332
|
line-height: 20px;
|
|
209
333
|
margin-right: 2px;
|
|
334
|
+
width: 25px;
|
|
210
335
|
}
|
|
211
336
|
|
|
212
337
|
.left-content {
|
|
338
|
+
display: grid;
|
|
339
|
+
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
340
|
+
grid-gap: 5px;
|
|
341
|
+
flex: 1;
|
|
213
342
|
.top {
|
|
214
343
|
margin-bottom: 8px;
|
|
215
|
-
|
|
344
|
+
margin-right: 8px;
|
|
216
345
|
.input-wrap {
|
|
217
346
|
display: flex;
|
|
218
347
|
align-items: center;
|
|
@@ -222,10 +351,11 @@
|
|
|
222
351
|
}
|
|
223
352
|
}
|
|
224
353
|
}
|
|
225
|
-
|
|
226
354
|
.bottom {
|
|
227
|
-
|
|
228
|
-
|
|
355
|
+
margin-bottom: 8px;
|
|
356
|
+
display: grid;
|
|
357
|
+
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
358
|
+
grid-gap: 5px;
|
|
229
359
|
}
|
|
230
360
|
}
|
|
231
361
|
}
|
|
@@ -235,49 +365,16 @@
|
|
|
235
365
|
align-items: center;
|
|
236
366
|
font-size: 16px;
|
|
237
367
|
color: #1E75FF;
|
|
368
|
+
width: 40px;
|
|
369
|
+
flex-shrink: 0;
|
|
238
370
|
}
|
|
239
371
|
}
|
|
240
372
|
}
|
|
241
373
|
|
|
242
374
|
.rate-input-wrap {
|
|
243
|
-
display:
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
.all-qualification-render {
|
|
248
|
-
.all-qualification-item {
|
|
249
|
-
background: #FFFFFF;
|
|
250
|
-
border-radius: 8px;
|
|
251
|
-
padding: 32px;
|
|
252
|
-
padding-top: 24px;
|
|
253
|
-
margin-bottom: 22px;
|
|
254
|
-
|
|
255
|
-
.title {
|
|
256
|
-
font-weight: 500;
|
|
257
|
-
font-size: 16px;
|
|
258
|
-
color: #333333;
|
|
259
|
-
line-height: 24px;
|
|
260
|
-
margin-bottom: 24px;
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.show-title {
|
|
265
|
-
height: 0px;
|
|
266
|
-
padding: 0;
|
|
267
|
-
margin: 0;
|
|
268
|
-
|
|
269
|
-
.title {
|
|
270
|
-
display: none;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.special-charge-title {
|
|
276
|
-
font-weight: 500;
|
|
277
|
-
font-size: 14px;
|
|
278
|
-
color: #333333;
|
|
279
|
-
line-height: 20px;
|
|
280
|
-
margin-bottom: 17px
|
|
375
|
+
display: grid;
|
|
376
|
+
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
377
|
+
grid-gap: 5px;
|
|
281
378
|
}
|
|
282
379
|
|
|
283
380
|
.special-charge-check {
|
|
@@ -286,25 +383,28 @@
|
|
|
286
383
|
align-items: center;
|
|
287
384
|
}
|
|
288
385
|
|
|
289
|
-
.custom-table {
|
|
290
|
-
.ant-table-thead>tr>th[colspan]:not([colspan='1']) {
|
|
291
|
-
text-align: left;
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
|
|
295
386
|
.product-table-wrap {
|
|
296
387
|
|
|
297
388
|
.ant-table-expand-icon-th,
|
|
298
389
|
.ant-table-row-expand-icon-cell {
|
|
299
390
|
width: 1px !important;
|
|
300
|
-
padding: 0;
|
|
391
|
+
padding: 0 !important;
|
|
301
392
|
min-width: 1px !important;
|
|
302
393
|
border: none !important;
|
|
303
394
|
}
|
|
304
|
-
|
|
395
|
+
.ant-table-tbody {
|
|
396
|
+
td:nth-child(2), td:nth-child(3) {
|
|
397
|
+
vertical-align: top;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
.ant-table-thead {
|
|
401
|
+
position: sticky;
|
|
402
|
+
top: 0;
|
|
403
|
+
z-index: 99;
|
|
404
|
+
}
|
|
305
405
|
tr.ant-table-expanded-row td:first-child {
|
|
306
406
|
width: 1px !important;
|
|
307
|
-
padding: 0;
|
|
407
|
+
padding: 0 !important;
|
|
308
408
|
min-width: 1px !important;
|
|
309
409
|
border: none !important;
|
|
310
410
|
}
|
|
@@ -323,6 +423,16 @@
|
|
|
323
423
|
.ant-table-thead>tr>th[colspan]:not([colspan='1']) {
|
|
324
424
|
text-align: left;
|
|
325
425
|
}
|
|
426
|
+
|
|
427
|
+
.ant-form-item {
|
|
428
|
+
margin-bottom: 0;
|
|
429
|
+
padding-bottom: 0;
|
|
430
|
+
width: 100%;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.ant-table-small .ant-table-body {
|
|
434
|
+
margin: 0 !important;
|
|
435
|
+
}
|
|
326
436
|
}
|
|
327
437
|
|
|
328
438
|
.more-product-wrap {
|
|
@@ -350,4 +460,83 @@
|
|
|
350
460
|
flex-wrap: wrap;
|
|
351
461
|
}
|
|
352
462
|
}
|
|
463
|
+
|
|
464
|
+
.group-render {
|
|
465
|
+
display: flex;
|
|
466
|
+
align-items: center;
|
|
467
|
+
min-height: 40px;
|
|
468
|
+
line-height: 22px;
|
|
469
|
+
position: sticky;
|
|
470
|
+
top: 40px;
|
|
471
|
+
.logo {
|
|
472
|
+
width: 24px;
|
|
473
|
+
margin-right: 8px
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.operate-btn {
|
|
477
|
+
padding: 8px 4px;
|
|
478
|
+
padding-top: 7px;
|
|
479
|
+
|
|
480
|
+
.anticon {
|
|
481
|
+
margin-left: 0px;
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.risk-wrap {
|
|
486
|
+
background: rgba(244, 98, 102, 0.1);
|
|
487
|
+
border-radius: 2px;
|
|
488
|
+
line-height: 18px;
|
|
489
|
+
text-align: center;
|
|
490
|
+
font-weight: 500;
|
|
491
|
+
font-size: 12px;
|
|
492
|
+
color: #f46266;
|
|
493
|
+
line-height: 12px;
|
|
494
|
+
padding: 3px 4px;
|
|
495
|
+
margin-left: 4px;
|
|
496
|
+
flex-shrink: 0;
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.refund-fee-config {
|
|
501
|
+
background-color: #fff;
|
|
502
|
+
margin-bottom: 12px;
|
|
503
|
+
padding: 24px;
|
|
504
|
+
|
|
505
|
+
.title {
|
|
506
|
+
font-weight: 500;
|
|
507
|
+
font-size: 16px;
|
|
508
|
+
color: #333333;
|
|
509
|
+
line-height: 24px;
|
|
510
|
+
margin-bottom: 24px;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.special-charge-title {
|
|
516
|
+
font-weight: 500;
|
|
517
|
+
font-size: 14px;
|
|
518
|
+
color: #333333;
|
|
519
|
+
line-height: 20px;
|
|
520
|
+
margin-bottom: 17px
|
|
521
|
+
}
|
|
522
|
+
.custom-table {
|
|
523
|
+
max-height: 50vh;
|
|
524
|
+
overflow-y: auto;
|
|
525
|
+
.ant-table-thead>tr>th[colspan]:not([colspan='1']) {
|
|
526
|
+
text-align: left;
|
|
527
|
+
}
|
|
528
|
+
.ant-table-small > .ant-table-content > .ant-table-body {
|
|
529
|
+
margin: 0;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
.title-dropdown {
|
|
533
|
+
width: 170px;
|
|
534
|
+
height: 62px;
|
|
535
|
+
background: #FFFFFF;
|
|
536
|
+
box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.05);
|
|
537
|
+
border-radius: 8px;
|
|
538
|
+
border: 1px solid #EFEFEF;
|
|
539
|
+
display: flex;
|
|
540
|
+
align-items: center;
|
|
541
|
+
justify-content: center;
|
|
353
542
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.yee-select-wrapper {
|
|
2
|
+
.ant-select {
|
|
3
|
+
&[highlight-type="primary"] {
|
|
4
|
+
.ant-select-selection {
|
|
5
|
+
background-color: #1890ff33;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
}
|
|
9
|
+
&[highlight-type="success"] {
|
|
10
|
+
.ant-select-selection {
|
|
11
|
+
background-color: #13ce6633;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
&[highlight-type="warning"] {
|
|
15
|
+
.ant-select-selection {
|
|
16
|
+
background-color: #FFBA0033;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
&[highlight-type="danger"] {
|
|
20
|
+
.ant-select-selection {
|
|
21
|
+
background-color: #ff494933;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.yee-service-level-wrapper {
|
|
2
|
+
.list {
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
.item {
|
|
6
|
+
width: 52px;
|
|
7
|
+
height: 28px;
|
|
8
|
+
margin-right: 8px;
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
:last-child {
|
|
13
|
+
margin-right: 0;
|
|
14
|
+
}
|
|
15
|
+
img {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
.hover {
|
|
20
|
+
display: none;
|
|
21
|
+
}
|
|
22
|
+
.active {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
&:hover {
|
|
26
|
+
.default {
|
|
27
|
+
display: none;
|
|
28
|
+
}
|
|
29
|
+
.hover {
|
|
30
|
+
display: block;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
.item-active {
|
|
35
|
+
.default {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
.hover {
|
|
39
|
+
display: none !important;
|
|
40
|
+
}
|
|
41
|
+
.active {
|
|
42
|
+
display: block;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
.item-disabled {
|
|
46
|
+
opacity: 0.8;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
package/dist/styles/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
.product[data-v-020131c4]{box-shadow:0 2px 12px #0000001a;border:4px solid #f0f2f5;border-radius:2px;}.product[data-v-020131c4] .ant-form-item{margin-bottom:0;}.product[data-v-020131c4] .ant-table-content{overflow-y:auto;}.padding[data-v-020131c4]{padding:0 24px;}.product-title[data-v-020131c4]{display:flex;align-items:center;background:#00000005;}.product-title p[data-v-020131c4]{flex:1;cursor:pointer;margin-right:10px;}.title[data-v-020131c4]{font-size:16px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#333;}.ellipsis[data-v-020131c4]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.product .actionButton[data-v-020131c4]{text-align:center;line-height:56px;box-shadow:0 -1px 2px #00000008;border-top:1px solid #e8e8e8;margin-top:16px;}.add-table-button[data-v-020131c4]{width:100%;height:32px;border-radius:4px;border:1px dashed #d9d9d9;margin-top:15px;font-size:13px;text-align:center;cursor:pointer;}[data-v-020131c4] .a-table_3_column_17,[data-v-020131c4] .a-table_3_column_18{vertical-align:top;}.select-wrap[data-v-020131c4]{display:flex;align-items:flex-start;}.select-wrap .icon-wrap[data-v-020131c4]{margin-top:5px;width:56px;display:flex;align-items:center;flex-shrink:0;}.select-wrap .icon[data-v-020131c4]{margin-left:8px;font-size:20px;cursor:pointer;height:30px;}.yee-renew-wrapper .title[data-v-890206e8],.yee-renew-wrapper .title[data-v-4c5edfba]{padding:24px 24px 0;margin-bottom:20px;font-weight:500;font-size:16px;color:#333;line-height:24px;margin-right:12px;}*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x:0;--un-pan-y:0;--un-pinch-zoom:0;--un-scroll-snap-strictness:proximity;--un-ordinal:0;--un-slashed-zero:0;--un-numeric-figure:0;--un-numeric-spacing:0;--un-numeric-fraction:0;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset:0;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset:0;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur:0;--un-brightness:0;--un-contrast:0;--un-drop-shadow:0;--un-grayscale:0;--un-hue-rotate:0;--un-invert:0;--un-saturate:0;--un-sepia:0;--un-backdrop-blur:0;--un-backdrop-brightness:0;--un-backdrop-contrast:0;--un-backdrop-grayscale:0;--un-backdrop-hue-rotate:0;--un-backdrop-invert:0;--un-backdrop-opacity:0;--un-backdrop-saturate:0;--un-backdrop-sepia:0;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x:0;--un-pan-y:0;--un-pinch-zoom:0;--un-scroll-snap-strictness:proximity;--un-ordinal:0;--un-slashed-zero:0;--un-numeric-figure:0;--un-numeric-spacing:0;--un-numeric-fraction:0;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgba(0,0,0,0);--un-ring-shadow:0 0 rgba(0,0,0,0);--un-shadow-inset:0;--un-shadow:0 0 rgba(0,0,0,0);--un-ring-inset:0;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur:0;--un-brightness:0;--un-contrast:0;--un-drop-shadow:0;--un-grayscale:0;--un-hue-rotate:0;--un-invert:0;--un-saturate:0;--un-sepia:0;--un-backdrop-blur:0;--un-backdrop-brightness:0;--un-backdrop-contrast:0;--un-backdrop-grayscale:0;--un-backdrop-hue-rotate:0;--un-backdrop-invert:0;--un-backdrop-opacity:0;--un-backdrop-saturate:0;--un-backdrop-sepia:0;}.visible{visibility:visible;}.absolute{position:absolute;}.relative{position:relative;}[col-span~="0"]{grid-column:span 0/span 0;}[col-span~="3"]{grid-column:span 3/span 3;}[rows~="4"]{grid-template-rows:repeat(4,minmax(0,1fr));}.inline{display:inline;}.block{display:block;}.hidden{display:none;}.w-4\/5{width:80%;}.flex{display:flex;}.flex-shrink{flex-shrink:1;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.cursor-auto{cursor:auto;}.cursor-default{cursor:default;}.cursor-none{cursor:none;}.cursor-context-menu{cursor:context-menu;}.cursor-help{cursor:help;}.cursor-pointer{cursor:pointer;}.cursor-progress{cursor:progress;}.cursor-wait{cursor:wait;}.cursor-cell{cursor:cell;}.cursor-crosshair{cursor:crosshair;}.cursor-text{cursor:text;}.cursor-vertical-text{cursor:vertical-text;}.cursor-alias{cursor:alias;}.cursor-copy{cursor:copy;}.cursor-move{cursor:move;}.cursor-no-drop{cursor:no-drop;}.cursor-not-allowed{cursor:not-allowed;}.cursor-grab{cursor:grab;}.cursor-grabbing{cursor:grabbing;}.cursor-all-scroll{cursor:all-scroll;}.cursor-col-resize{cursor:col-resize;}.cursor-row-resize{cursor:row-resize;}.cursor-n-resize{cursor:n-resize;}.cursor-e-resize{cursor:e-resize;}.cursor-s-resize{cursor:s-resize;}.cursor-w-resize{cursor:w-resize;}.cursor-zoom-in{cursor:zoom-in;}.cursor-zoom-out{cursor:zoom-out;}.select-all{-webkit-user-select:all;user-select:all;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.items-baseline{align-items:baseline;}.items-stretch{align-items:stretch;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.justify-around{justify-content:space-around;}.justify-evenly{justify-content:space-evenly;}.gap-2{gap:.5rem;}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-scroll{overflow:scroll;}.overflow-visible{overflow:visible;}.truncate,[truncate=""]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.border{border-width:1px;}.object-cover{object-fit:cover;}.object-contain{object-fit:contain;}.object-fill{object-fit:fill;}.object-scale-down{object-fit:scale-down;}.object-none{object-fit:none;}.px,.px-4{padding-left:1rem;padding-right:1rem;}.blur{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.sub-card-wrap {
|
|
2
|
+
background-color: #FBFCFF;
|
|
3
|
+
padding: 16px 24px 8px 24px;
|
|
4
|
+
.sub-card-title {
|
|
5
|
+
color: #333;
|
|
6
|
+
font-weight: 500;
|
|
7
|
+
position: relative;
|
|
8
|
+
&::before {
|
|
9
|
+
content: '';
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 6px;
|
|
12
|
+
left: -8px;
|
|
13
|
+
width: 2px;
|
|
14
|
+
height: 11px;
|
|
15
|
+
background-color: #40a9ff;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|