@lx-frontend/wrap-element-ui 1.0.2-beta.4 → 1.0.2-beta.6
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/package.json +5 -5
- package/src/components/EditableTable/bizHooks/useDragSort.ts +2 -2
- package/src/components/EditableTable/features/bizColorSelect.vue +1 -1
- package/src/components/EditableTable/features/bizTableHeaderPopover.vue +24 -24
- package/src/components/EditableTable/features/bizTableOperatePopover.vue +7 -7
- package/src/components/EditableTable/features/bizViewSettingDialog.vue +17 -17
- package/src/components/EditableTable/index.less +437 -440
- package/src/components/EditableTable/index.vue +7 -7
|
@@ -139,534 +139,566 @@
|
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
&
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
width: 24px;
|
|
148
|
-
height: 24px;
|
|
149
|
-
color: white;
|
|
150
|
-
background-color: #969ca4;
|
|
151
|
-
}
|
|
142
|
+
&__view-setting {
|
|
143
|
+
&__btn-wrapper {
|
|
144
|
+
display: flex;
|
|
145
|
+
justify-content: flex-end;
|
|
146
|
+
}
|
|
152
147
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
148
|
+
&__btn {
|
|
149
|
+
display: flex;
|
|
150
|
+
justify-content: flex-end;
|
|
151
|
+
align-items: center;
|
|
152
|
+
font-weight: 400;
|
|
153
|
+
font-size: 14px;
|
|
154
|
+
color: @--theme-blue--;
|
|
155
|
+
margin-bottom: 17px;
|
|
156
|
+
margin-right: 20px;
|
|
157
|
+
}
|
|
157
158
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
background-color: #fafafa;
|
|
159
|
+
&__btn-text {
|
|
160
|
+
margin-left: 4px;
|
|
161
161
|
}
|
|
162
|
-
}
|
|
163
162
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
border-top: none;
|
|
167
|
-
border-left: none;
|
|
168
|
-
border-right: none;
|
|
169
|
-
}
|
|
163
|
+
&__dialog {
|
|
164
|
+
padding: 0px;
|
|
170
165
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
166
|
+
.el-dialog__body {
|
|
167
|
+
max-height: 70vh;
|
|
168
|
+
}
|
|
174
169
|
|
|
175
|
-
|
|
176
|
-
|
|
170
|
+
.el-dialog__body {
|
|
171
|
+
padding: 0;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
& .el-button--primary {
|
|
175
|
+
background-color: @--theme-blue-- !important;
|
|
176
|
+
border-color: @--theme-blue-- !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
& .el-checkbox.is-checked:not(.is-disabled) {
|
|
180
|
+
.el-checkbox__input .el-checkbox__inner {
|
|
181
|
+
background-color: @--theme-blue-- !important;
|
|
182
|
+
border-color: @--theme-blue-- !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.el-checkbox__label {
|
|
186
|
+
color: @--theme-blue-- !important;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
& .el-button {
|
|
191
|
+
border-radius: 2px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.el-dialog__header {
|
|
195
|
+
display: flex;
|
|
196
|
+
justify-content: space-between;
|
|
197
|
+
align-items: center;
|
|
198
|
+
font-size: 14px;
|
|
199
|
+
background-color: #eeeeee;
|
|
200
|
+
height: 36px;
|
|
201
|
+
line-height: 36px;
|
|
202
|
+
padding: 0 20px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.el-dialog__headerbtn {
|
|
206
|
+
position: inherit;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.el-dialog__title {
|
|
210
|
+
font-size: 14px;
|
|
211
|
+
line-height: 20px;
|
|
212
|
+
color: #333333;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.el-dialog__footer {
|
|
216
|
+
background-color: #eeeeee;
|
|
217
|
+
height: 42px;
|
|
218
|
+
line-height: 42px;
|
|
219
|
+
padding: 0 20px;
|
|
220
|
+
|
|
221
|
+
& .el-button {
|
|
222
|
+
height: 24px;
|
|
223
|
+
// line-height: 24px;
|
|
224
|
+
font-size: 12px;
|
|
225
|
+
padding: 5px 12px;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
177
228
|
}
|
|
178
229
|
|
|
179
|
-
|
|
180
|
-
|
|
230
|
+
&__content {
|
|
231
|
+
display: flex;
|
|
232
|
+
min-height: 500px;
|
|
181
233
|
}
|
|
182
|
-
}
|
|
183
234
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
display: none;
|
|
188
|
-
}
|
|
235
|
+
&__content-left {
|
|
236
|
+
min-width: 417px;
|
|
237
|
+
width: 417px;
|
|
189
238
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
239
|
+
display: flex;
|
|
240
|
+
flex-direction: column;
|
|
241
|
+
justify-content: flex-start;
|
|
242
|
+
align-items: flex-start;
|
|
243
|
+
}
|
|
194
244
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
245
|
+
&__content-left-item {
|
|
246
|
+
width: 130px;
|
|
247
|
+
margin-bottom: 15px;
|
|
198
248
|
}
|
|
199
249
|
|
|
200
|
-
&
|
|
201
|
-
|
|
250
|
+
&__content-right {
|
|
251
|
+
border-left: 1px solid #d9d9d9;
|
|
252
|
+
display: flex;
|
|
253
|
+
flex-direction: column;
|
|
254
|
+
justify-content: flex-start;
|
|
255
|
+
align-items: flex-start;
|
|
202
256
|
}
|
|
203
|
-
}
|
|
204
257
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
258
|
+
&__content-right-title,
|
|
259
|
+
&__content-left-title {
|
|
260
|
+
border-bottom: 1px solid #d9d9d9;
|
|
261
|
+
width: 100%;
|
|
262
|
+
height: 46px;
|
|
263
|
+
display: flex;
|
|
264
|
+
justify-content: flex-start;
|
|
265
|
+
align-items: center;
|
|
266
|
+
padding-left: 20px;
|
|
267
|
+
}
|
|
208
268
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
border-color: @--theme-blue--;
|
|
213
|
-
}
|
|
214
|
-
}
|
|
269
|
+
&__selected-count {
|
|
270
|
+
margin-left: 20px;
|
|
271
|
+
}
|
|
215
272
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
}
|
|
273
|
+
&__checkbox-wrapper {
|
|
274
|
+
padding-left: 37px;
|
|
275
|
+
padding-top: 24px;
|
|
276
|
+
}
|
|
221
277
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
align-items: center;
|
|
226
|
-
font-weight: 400;
|
|
227
|
-
font-size: 14px;
|
|
228
|
-
color: @--theme-blue--;
|
|
229
|
-
margin-bottom: 17px;
|
|
230
|
-
margin-right: 20px;
|
|
231
|
-
}
|
|
278
|
+
&__content-right {
|
|
279
|
+
flex-grow: 1;
|
|
280
|
+
}
|
|
232
281
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
282
|
+
&__content-right-frize {
|
|
283
|
+
width: 100%;
|
|
284
|
+
display: flex;
|
|
285
|
+
justify-content: flex-start;
|
|
286
|
+
align-items: center;
|
|
287
|
+
height: 50px;
|
|
288
|
+
border-bottom: 1px solid #d9d9d9;
|
|
289
|
+
padding-left: 20px;
|
|
290
|
+
}
|
|
236
291
|
|
|
237
|
-
|
|
238
|
-
|
|
292
|
+
&__content-right-input.el-input {
|
|
293
|
+
width: 140px;
|
|
294
|
+
margin: 0 4px;
|
|
239
295
|
|
|
240
|
-
|
|
241
|
-
|
|
296
|
+
.el-input__inner {
|
|
297
|
+
height: 28px;
|
|
298
|
+
line-height: 28px;
|
|
299
|
+
}
|
|
242
300
|
}
|
|
243
301
|
|
|
244
|
-
|
|
245
|
-
|
|
302
|
+
&__content-right-selected {
|
|
303
|
+
display: flex;
|
|
304
|
+
justify-content: flex-start;
|
|
305
|
+
flex-direction: column;
|
|
306
|
+
align-items: flex-start;
|
|
307
|
+
width: 100%;
|
|
308
|
+
flex-grow: 1;
|
|
309
|
+
padding-left: 18px;
|
|
310
|
+
padding-top: 17px;
|
|
311
|
+
padding-right: 23px;
|
|
246
312
|
}
|
|
247
313
|
|
|
248
|
-
&
|
|
249
|
-
|
|
250
|
-
|
|
314
|
+
&__selected-item-left {
|
|
315
|
+
display: flex;
|
|
316
|
+
justify-content: flex-start;
|
|
317
|
+
align-items: center;
|
|
251
318
|
}
|
|
252
319
|
|
|
253
|
-
&
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
320
|
+
&__icon-wrapper {
|
|
321
|
+
width: 14px;
|
|
322
|
+
height: 14px;
|
|
323
|
+
line-height: 14px;
|
|
324
|
+
padding: 2px 4px;
|
|
325
|
+
margin-right: 10px;
|
|
326
|
+
cursor: grab;
|
|
327
|
+
display: flex;
|
|
328
|
+
flex-direction: column;
|
|
329
|
+
justify-content: center;
|
|
330
|
+
align-items: center;
|
|
261
331
|
}
|
|
262
332
|
|
|
263
|
-
&
|
|
264
|
-
|
|
333
|
+
&__selected-item {
|
|
334
|
+
display: flex;
|
|
335
|
+
justify-content: space-between;
|
|
336
|
+
align-items: center;
|
|
337
|
+
line-height: 30px;
|
|
338
|
+
height: 30px;
|
|
339
|
+
width: 100%;
|
|
265
340
|
}
|
|
266
|
-
}
|
|
267
341
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
342
|
+
&__selected-item-close {
|
|
343
|
+
cursor: pointer;
|
|
344
|
+
|
|
345
|
+
&--disabled {
|
|
346
|
+
cursor: not-allowed;
|
|
347
|
+
color: #989ea9;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
271
350
|
}
|
|
272
351
|
|
|
273
|
-
&
|
|
274
|
-
min-width:
|
|
275
|
-
width:
|
|
352
|
+
&__color-popover {
|
|
353
|
+
min-width: 102px !important;
|
|
354
|
+
width: 102px !important;
|
|
355
|
+
padding: 0 !important;
|
|
276
356
|
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
align-items: flex-start;
|
|
281
|
-
}
|
|
357
|
+
& .popper__arrow::after {
|
|
358
|
+
left: 0 !important;
|
|
359
|
+
}
|
|
282
360
|
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
361
|
+
.color-list {
|
|
362
|
+
color: #fff;
|
|
363
|
+
width: 102px;
|
|
364
|
+
border-radius: 5px;
|
|
365
|
+
overflow: hidden;
|
|
287
366
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
367
|
+
&__item {
|
|
368
|
+
display: inline-block;
|
|
369
|
+
width: 100%;
|
|
370
|
+
height: 27px;
|
|
371
|
+
line-height: 27px;
|
|
372
|
+
padding-left: 6px;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
294
375
|
}
|
|
295
376
|
|
|
296
|
-
&
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
width: 100%;
|
|
300
|
-
height: 46px;
|
|
301
|
-
display: flex;
|
|
302
|
-
justify-content: flex-start;
|
|
303
|
-
align-items: center;
|
|
304
|
-
padding-left: 20px;
|
|
305
|
-
}
|
|
377
|
+
&__sort-filter {
|
|
378
|
+
padding: 0 !important;
|
|
379
|
+
width: 258px;
|
|
306
380
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
381
|
+
&__column-title {
|
|
382
|
+
font-size: 14px;
|
|
383
|
+
font-weight: 600;
|
|
384
|
+
height: 40px;
|
|
385
|
+
line-height: 40px;
|
|
386
|
+
text-align: center;
|
|
387
|
+
border-bottom: 1px solid #d6dbe3;
|
|
388
|
+
}
|
|
310
389
|
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
390
|
+
&__filter,
|
|
391
|
+
&__sort,
|
|
392
|
+
&__search {
|
|
393
|
+
padding: 14px;
|
|
394
|
+
}
|
|
315
395
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
396
|
+
&__filter {
|
|
397
|
+
padding-top: 0;
|
|
398
|
+
}
|
|
319
399
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
}
|
|
400
|
+
&__filter-title,
|
|
401
|
+
&__sort-title,
|
|
402
|
+
&__search-title {
|
|
403
|
+
font-weight: 600;
|
|
404
|
+
font-size: 14px;
|
|
405
|
+
color: #1f1f1f;
|
|
406
|
+
margin-bottom: 10px;
|
|
407
|
+
}
|
|
329
408
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
409
|
+
&__search-input {
|
|
410
|
+
& .el-input__inner {
|
|
411
|
+
height: 32px;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
333
414
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
415
|
+
&__filter-title {
|
|
416
|
+
border-top: 1px solid #f3f3f3;
|
|
417
|
+
padding-top: 14px;
|
|
337
418
|
}
|
|
338
|
-
}
|
|
339
419
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
align-items: flex-start;
|
|
345
|
-
width: 100%;
|
|
346
|
-
flex-grow: 1;
|
|
347
|
-
padding-left: 18px;
|
|
348
|
-
padding-top: 17px;
|
|
349
|
-
padding-right: 23px;
|
|
350
|
-
}
|
|
420
|
+
&__sort-btns {
|
|
421
|
+
display: flex;
|
|
422
|
+
justify-content: space-between;
|
|
423
|
+
align-items: center;
|
|
351
424
|
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
}
|
|
425
|
+
& .el-button {
|
|
426
|
+
border: none;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
357
429
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
display: flex;
|
|
366
|
-
flex-direction: column;
|
|
367
|
-
justify-content: center;
|
|
368
|
-
align-items: center;
|
|
369
|
-
}
|
|
430
|
+
&__sort-btn.el-button {
|
|
431
|
+
width: 112px;
|
|
432
|
+
height: 28px;
|
|
433
|
+
padding: 4px 42px;
|
|
434
|
+
display: inline-block;
|
|
435
|
+
background-color: #f4f4f4;
|
|
436
|
+
color: #4a4a4a;
|
|
370
437
|
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
align-items: center;
|
|
375
|
-
line-height: 30px;
|
|
376
|
-
height: 30px;
|
|
377
|
-
width: 100%;
|
|
378
|
-
}
|
|
438
|
+
&:hover {
|
|
439
|
+
background-color: #fafafa;
|
|
440
|
+
}
|
|
379
441
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
442
|
+
&--active {
|
|
443
|
+
color: @--theme-blue--;
|
|
444
|
+
border-color: #eef3ff;
|
|
445
|
+
background: #f4f7fe;
|
|
446
|
+
|
|
447
|
+
&:hover {
|
|
448
|
+
background-color: #f4f7fe;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
385
451
|
}
|
|
386
|
-
}
|
|
387
|
-
}
|
|
388
452
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
453
|
+
&__filter-checkbox-group {
|
|
454
|
+
display: flex;
|
|
455
|
+
flex-direction: column;
|
|
456
|
+
justify-content: flex-start;
|
|
457
|
+
align-items: flex-start;
|
|
458
|
+
}
|
|
393
459
|
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
}
|
|
460
|
+
&__filter-checkbox {
|
|
461
|
+
margin-top: 10px;
|
|
462
|
+
font-size: 14px;
|
|
398
463
|
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
overflow: hidden;
|
|
404
|
-
&__item {
|
|
405
|
-
display: inline-block;
|
|
406
|
-
width: 100%;
|
|
407
|
-
height: 27px;
|
|
408
|
-
line-height: 27px;
|
|
409
|
-
padding-left: 6px;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
464
|
+
&:first-child {
|
|
465
|
+
margin-top: 0;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
412
468
|
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
469
|
+
&__footer {
|
|
470
|
+
display: flex;
|
|
471
|
+
height: 47px;
|
|
472
|
+
border-top: 1px solid #d6dbe3;
|
|
473
|
+
justify-content: flex-end;
|
|
474
|
+
align-items: center;
|
|
475
|
+
padding: 0 15px;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
&__reset-btn,
|
|
479
|
+
&__confirm-btn {
|
|
480
|
+
&.el-button {
|
|
481
|
+
width: 50px;
|
|
482
|
+
height: 28px;
|
|
483
|
+
margin-left: 10px;
|
|
484
|
+
display: flex;
|
|
485
|
+
justify-content: center;
|
|
486
|
+
align-items: center;
|
|
487
|
+
border-radius: 2px;
|
|
488
|
+
font-size: 14px;
|
|
489
|
+
font-weight: 400;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
416
492
|
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
line-height: 40px;
|
|
422
|
-
text-align: center;
|
|
423
|
-
border-bottom: 1px solid #d6dbe3;
|
|
424
|
-
}
|
|
493
|
+
&__confirm-btn.el-button {
|
|
494
|
+
background-color: @--theme-blue--;
|
|
495
|
+
border-color: @--theme-blue--;
|
|
496
|
+
}
|
|
425
497
|
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
498
|
+
.el-checkbox__input.is-checked .el-checkbox__inner,
|
|
499
|
+
.el-radio__input.is-checked .el-radio__inner {
|
|
500
|
+
background: @--theme-blue--;
|
|
501
|
+
border-color: @--theme-blue--;
|
|
502
|
+
}
|
|
430
503
|
}
|
|
431
504
|
|
|
432
|
-
&
|
|
433
|
-
|
|
505
|
+
&__pin-top {
|
|
506
|
+
width: 24px;
|
|
507
|
+
height: 24px;
|
|
508
|
+
color: white;
|
|
509
|
+
background-color: #969ca4;
|
|
434
510
|
}
|
|
435
511
|
|
|
436
|
-
&
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
font-weight: 600;
|
|
440
|
-
font-size: 14px;
|
|
441
|
-
color: #1f1f1f;
|
|
442
|
-
margin-bottom: 10px;
|
|
512
|
+
& .el-table td,
|
|
513
|
+
.el-table th.is-leaf {
|
|
514
|
+
border-bottom: 1px solid #dfe3ec;
|
|
443
515
|
}
|
|
444
516
|
|
|
445
|
-
&
|
|
446
|
-
&
|
|
447
|
-
|
|
517
|
+
& .el-table {
|
|
518
|
+
&__expanded-cell {
|
|
519
|
+
background-color: #fafafa;
|
|
448
520
|
}
|
|
449
521
|
}
|
|
450
522
|
|
|
451
|
-
&
|
|
452
|
-
|
|
453
|
-
|
|
523
|
+
& .el-table tr td {
|
|
524
|
+
min-height: 45px;
|
|
525
|
+
border-top: none;
|
|
526
|
+
border-left: none;
|
|
527
|
+
border-right: none;
|
|
454
528
|
}
|
|
455
529
|
|
|
456
|
-
&
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
align-items: center;
|
|
530
|
+
& thead tr th {
|
|
531
|
+
background-color: #f3f4f8 !important;
|
|
532
|
+
border-right: none !important;
|
|
460
533
|
|
|
461
|
-
& .
|
|
462
|
-
|
|
534
|
+
& .cell {
|
|
535
|
+
color: #13161b;
|
|
463
536
|
}
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
&__sort-btn.el-button {
|
|
467
|
-
width: 112px;
|
|
468
|
-
height: 28px;
|
|
469
|
-
padding: 4px 42px;
|
|
470
|
-
display: inline-block;
|
|
471
|
-
background-color: #f4f4f4;
|
|
472
|
-
color: #4a4a4a;
|
|
473
537
|
|
|
474
|
-
&:
|
|
475
|
-
|
|
538
|
+
&:not(:last-child) .cell {
|
|
539
|
+
border-right: 2px #e4e8ef solid;
|
|
476
540
|
}
|
|
541
|
+
}
|
|
477
542
|
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
&:hover {
|
|
484
|
-
background-color: #f4f7fe;
|
|
485
|
-
}
|
|
486
|
-
}
|
|
543
|
+
.el-table-filter,
|
|
544
|
+
th.el-table__cell .el-table__column-filter-trigger,
|
|
545
|
+
th.is-sortable .caret-wrapper {
|
|
546
|
+
display: none;
|
|
487
547
|
}
|
|
488
548
|
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
justify-content: flex-start;
|
|
493
|
-
align-items: flex-start;
|
|
549
|
+
.el-table__body tr.current-row>td,
|
|
550
|
+
.el-table__body tr.hover-row>td {
|
|
551
|
+
background-color: #fafafa;
|
|
494
552
|
}
|
|
495
553
|
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
554
|
+
table tbody tr td {
|
|
555
|
+
& .el-date-editor.el-input {
|
|
556
|
+
width: 100%;
|
|
557
|
+
}
|
|
499
558
|
|
|
500
|
-
|
|
501
|
-
|
|
559
|
+
& .cell {
|
|
560
|
+
font-size: 12px;
|
|
502
561
|
}
|
|
503
562
|
}
|
|
504
563
|
|
|
505
|
-
&
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
border-top: 1px solid #d6dbe3;
|
|
509
|
-
justify-content: flex-end;
|
|
510
|
-
align-items: center;
|
|
511
|
-
padding: 0 15px;
|
|
564
|
+
& table th {
|
|
565
|
+
font-size: 12px;
|
|
566
|
+
font-weight: bold;
|
|
512
567
|
}
|
|
513
568
|
|
|
514
|
-
&
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
width: 50px;
|
|
518
|
-
height: 28px;
|
|
519
|
-
margin-left: 10px;
|
|
520
|
-
display: flex;
|
|
521
|
-
justify-content: center;
|
|
522
|
-
align-items: center;
|
|
523
|
-
border-radius: 2px;
|
|
524
|
-
font-size: 14px;
|
|
525
|
-
font-weight: 400;
|
|
526
|
-
}
|
|
569
|
+
& table td {
|
|
570
|
+
font-size: 12px;
|
|
571
|
+
color: #13161b;
|
|
527
572
|
}
|
|
528
573
|
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
574
|
+
.el-table th>.cell {
|
|
575
|
+
color: #5b6984
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.el-table__fixed-body-wrapper {
|
|
579
|
+
background: #fff;
|
|
532
580
|
}
|
|
533
581
|
|
|
534
582
|
.el-checkbox__input.is-checked .el-checkbox__inner,
|
|
535
|
-
.el-
|
|
583
|
+
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
|
|
536
584
|
background: @--theme-blue--;
|
|
537
585
|
border-color: @--theme-blue--;
|
|
538
586
|
}
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.btn-pointer {
|
|
542
|
-
cursor: pointer;
|
|
543
|
-
}
|
|
544
587
|
|
|
545
|
-
.
|
|
546
|
-
|
|
547
|
-
|
|
588
|
+
.no-inner-cell-border {
|
|
589
|
+
& .cell {
|
|
590
|
+
border: none !important;
|
|
591
|
+
}
|
|
592
|
+
}
|
|
548
593
|
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
594
|
+
.custom-row-classname-pinned {
|
|
595
|
+
& td:last-child {
|
|
596
|
+
background-image: url("./pin-top.png");
|
|
597
|
+
background-repeat: no-repeat;
|
|
598
|
+
background-size: 24px 24px;
|
|
599
|
+
background-position: right 0 top 0;
|
|
600
|
+
}
|
|
554
601
|
}
|
|
555
602
|
|
|
556
|
-
&__operation-
|
|
557
|
-
|
|
603
|
+
&__operation-popover {
|
|
604
|
+
min-width: 120px;
|
|
605
|
+
padding: 0;
|
|
558
606
|
|
|
559
|
-
|
|
560
|
-
|
|
607
|
+
&__operation {
|
|
608
|
+
display: flex;
|
|
609
|
+
flex-direction: column;
|
|
610
|
+
justify-content: space-between;
|
|
611
|
+
align-items: center;
|
|
561
612
|
}
|
|
562
613
|
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
border: none;
|
|
566
|
-
padding: 0;
|
|
567
|
-
font-weight: 400;
|
|
568
|
-
color: #13161b;
|
|
569
|
-
font-size: 14px;
|
|
614
|
+
&__operation-reference {
|
|
615
|
+
display: inline-block;
|
|
570
616
|
|
|
571
|
-
|
|
617
|
+
&--active {
|
|
572
618
|
color: @--theme-blue--;
|
|
573
619
|
}
|
|
574
|
-
}
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
&__operation-item {
|
|
578
|
-
height: 40px;
|
|
579
|
-
line-height: 40px;
|
|
580
|
-
width: 100%;
|
|
581
|
-
text-align: center;
|
|
582
|
-
color: #1f1f1f;
|
|
583
|
-
cursor: pointer;
|
|
584
620
|
|
|
585
|
-
|
|
586
|
-
|
|
621
|
+
.el-button {
|
|
622
|
+
background: transparent;
|
|
623
|
+
border: none;
|
|
624
|
+
padding: 0;
|
|
625
|
+
font-weight: 400;
|
|
626
|
+
color: #13161b;
|
|
627
|
+
font-size: 14px;
|
|
628
|
+
|
|
629
|
+
&:focus {
|
|
630
|
+
color: @--theme-blue--;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
587
633
|
}
|
|
588
|
-
}
|
|
589
634
|
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
635
|
+
&__operation-item {
|
|
636
|
+
height: 40px;
|
|
637
|
+
line-height: 40px;
|
|
638
|
+
width: 100%;
|
|
639
|
+
text-align: center;
|
|
640
|
+
color: #1f1f1f;
|
|
641
|
+
cursor: pointer;
|
|
596
642
|
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
margin-right: 15px;
|
|
643
|
+
&:hover {
|
|
644
|
+
background: #f4f7fe;
|
|
645
|
+
}
|
|
601
646
|
}
|
|
602
|
-
}
|
|
603
647
|
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
648
|
+
&__save-cancel {
|
|
649
|
+
display: flex;
|
|
650
|
+
justify-content: flex-start;
|
|
651
|
+
align-items: center;
|
|
652
|
+
color: @--theme-blue--;
|
|
607
653
|
}
|
|
608
|
-
}
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
.pagination-wrap {
|
|
612
|
-
display: flex;
|
|
613
|
-
justify-content: space-between;
|
|
614
|
-
align-items: center;
|
|
615
|
-
margin-top: 12px;
|
|
616
|
-
|
|
617
|
-
& .el-pagination.is-background {
|
|
618
|
-
padding: 0;
|
|
619
654
|
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
border: 1px solid #d6dbe3;
|
|
623
|
-
font-weight: 400;
|
|
624
|
-
font-size: 14px;
|
|
655
|
+
&__btn {
|
|
656
|
+
cursor: pointer;
|
|
625
657
|
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
color: #fff;
|
|
658
|
+
&:first-child {
|
|
659
|
+
margin-right: 15px;
|
|
629
660
|
}
|
|
630
661
|
}
|
|
631
662
|
|
|
632
|
-
&
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
663
|
+
&__operation-btn {
|
|
664
|
+
&--active {
|
|
665
|
+
color: @--theme-blue-- !important;
|
|
666
|
+
}
|
|
636
667
|
}
|
|
637
668
|
}
|
|
638
|
-
}
|
|
639
669
|
|
|
640
|
-
.
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
background-position: right 0 top 0;
|
|
646
|
-
}
|
|
647
|
-
}
|
|
670
|
+
.pagination-wrap {
|
|
671
|
+
display: flex;
|
|
672
|
+
justify-content: space-between;
|
|
673
|
+
align-items: center;
|
|
674
|
+
margin-top: 12px;
|
|
648
675
|
|
|
676
|
+
& .el-pagination.is-background {
|
|
677
|
+
padding: 0;
|
|
649
678
|
|
|
679
|
+
.el-pager li.number {
|
|
680
|
+
background-color: #fff;
|
|
681
|
+
border: 1px solid #d6dbe3;
|
|
682
|
+
font-weight: 400;
|
|
683
|
+
font-size: 14px;
|
|
650
684
|
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
685
|
+
&.active {
|
|
686
|
+
background-color: @--theme-blue--;
|
|
687
|
+
color: #fff;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
656
690
|
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
691
|
+
& .btn-prev,
|
|
692
|
+
& .btn-next,
|
|
693
|
+
& .el-icon-more {
|
|
694
|
+
background-color: #fff !important;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
663
697
|
}
|
|
664
698
|
}
|
|
665
699
|
|
|
666
|
-
.
|
|
667
|
-
|
|
668
|
-
border: none !important;
|
|
669
|
-
}
|
|
700
|
+
.btn-pointer {
|
|
701
|
+
cursor: pointer;
|
|
670
702
|
}
|
|
671
703
|
|
|
672
704
|
.editable-table-drag-icon {
|
|
@@ -697,39 +729,4 @@
|
|
|
697
729
|
&::before {
|
|
698
730
|
bottom: -4px;
|
|
699
731
|
}
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.el-dialog__header {
|
|
703
|
-
display: flex;
|
|
704
|
-
justify-content: space-between;
|
|
705
|
-
align-items: center;
|
|
706
|
-
font-size: 14px;
|
|
707
|
-
background-color: #eeeeee;
|
|
708
|
-
height: 36px;
|
|
709
|
-
line-height: 36px;
|
|
710
|
-
padding: 0 20px;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.el-dialog__headerbtn {
|
|
714
|
-
position: inherit;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.el-dialog__title {
|
|
718
|
-
font-size: 14px;
|
|
719
|
-
line-height: 20px;
|
|
720
|
-
color: #333333;
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
.el-dialog__footer {
|
|
724
|
-
background-color: #eeeeee;
|
|
725
|
-
height: 42px;
|
|
726
|
-
line-height: 42px;
|
|
727
|
-
padding: 0 20px;
|
|
728
|
-
|
|
729
|
-
& .el-button {
|
|
730
|
-
height: 24px;
|
|
731
|
-
// line-height: 24px;
|
|
732
|
-
font-size: 12px;
|
|
733
|
-
padding: 5px 12px;
|
|
734
|
-
}
|
|
735
|
-
}
|
|
732
|
+
}
|