@longhongguo/form-create-ant-design-vue 3.2.49 → 3.2.51
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/form-create.css +974 -0
- package/dist/form-create.esm.css +974 -0
- package/dist/form-create.esm.js +2 -2
- package/dist/form-create.esm.js.map +1 -1
- package/dist/form-create.js +2 -2
- package/dist/form-create.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CusStoreSelect/index.vue +16 -0
- package/src/components/CusUserSelect/index.vue +16 -0
- package/src/components/index.js +7 -1
- package/src/components/tableForm/TableForm.vue +323 -0
- package/src/components/tableForm/TableFormColumnView.vue +41 -0
- package/src/components/tableForm/TableFormView.vue +19 -0
- package/src/core/index.js +1 -0
- package/src/style/fonts/fc-icons.woff +0 -0
- package/src/style/icon.css +788 -0
- package/src/style/index.css +185 -0
package/dist/form-create.css
CHANGED
|
@@ -306,3 +306,977 @@
|
|
|
306
306
|
.fc-cus-select-disabled .fc-cus-select-selection-placeholder {
|
|
307
307
|
color: rgba(0, 0, 0, 0.25);
|
|
308
308
|
}
|
|
309
|
+
|
|
310
|
+
/* TableForm 组件样式 */
|
|
311
|
+
._fc-table-form {
|
|
312
|
+
overflow: auto;
|
|
313
|
+
color: #666666;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
._fc-table-form .form-create .ant-form-item {
|
|
317
|
+
margin-bottom: 1px !important;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
._fc-table-form .ant-form-item-label,
|
|
321
|
+
._fc-table-form .van-field__label {
|
|
322
|
+
display: none !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
._fc-tf-head-idx,
|
|
326
|
+
._fc-tf-idx {
|
|
327
|
+
width: 40px;
|
|
328
|
+
min-width: 40px;
|
|
329
|
+
font-weight: 500;
|
|
330
|
+
text-align: center;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
._fc-tf-edit,
|
|
334
|
+
._fc-tf-btn {
|
|
335
|
+
width: 70px;
|
|
336
|
+
min-width: 70px;
|
|
337
|
+
text-align: center;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
._fc-tf-btn .fc-icon {
|
|
341
|
+
cursor: pointer;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
._fc-table-form > .ant-btn {
|
|
345
|
+
display: flex;
|
|
346
|
+
align-items: center;
|
|
347
|
+
padding: 2px;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
._fc-table-form._fc-disabled ._fc-tf-btn .fc-icon,
|
|
351
|
+
._fc-table-form._fc-disabled > .ant-btn {
|
|
352
|
+
cursor: not-allowed;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
._fc-tf-table {
|
|
356
|
+
width: 100%;
|
|
357
|
+
height: 100%;
|
|
358
|
+
overflow: hidden;
|
|
359
|
+
table-layout: fixed;
|
|
360
|
+
border: 1px solid #ebeef5;
|
|
361
|
+
border-bottom: 0 none;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
._fc-table-form ._fc-tf-table > thead > tr > th {
|
|
365
|
+
border: 0 none;
|
|
366
|
+
border-bottom: 1px solid #ebeef5;
|
|
367
|
+
height: 40px;
|
|
368
|
+
font-weight: 500;
|
|
369
|
+
padding: 0 5px;
|
|
370
|
+
box-sizing: border-box;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
._fc-table-form ._fc-tf-table > thead > tr > th + th {
|
|
374
|
+
border-left: 1px solid #ebeef5;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
._fc-table-form tr {
|
|
378
|
+
min-height: 50px;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
._fc-table-form ._fc-read-view {
|
|
382
|
+
text-align: center;
|
|
383
|
+
width: 100%;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
._fc-table-form td {
|
|
387
|
+
padding: 5px;
|
|
388
|
+
min-height: 50px;
|
|
389
|
+
min-width: 80px;
|
|
390
|
+
position: relative;
|
|
391
|
+
box-sizing: border-box;
|
|
392
|
+
overflow-wrap: break-word;
|
|
393
|
+
overflow: hidden;
|
|
394
|
+
border: 0 none;
|
|
395
|
+
border-bottom: 1px solid #ebeef5;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
._fc-table-form td + td {
|
|
399
|
+
border-left: 1px solid #ebeef5;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
._fc-tf-table .ant-input-number,
|
|
403
|
+
._fc-tf-table .ant-select,
|
|
404
|
+
._fc-tf-table .ant-slider,
|
|
405
|
+
._fc-tf-table .ant-cascader,
|
|
406
|
+
._fc-tf-table .ant-picker {
|
|
407
|
+
width: 100%;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
._fc-tf-head-required:before {
|
|
411
|
+
content: '*';
|
|
412
|
+
color: #f56c6c;
|
|
413
|
+
margin-right: 4px;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
/* TableFormView 组件样式 */
|
|
417
|
+
._fd-table-form {
|
|
418
|
+
min-height: 130px;
|
|
419
|
+
width: 100%;
|
|
420
|
+
border: 1px solid #ececec;
|
|
421
|
+
background: #ffffff;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
._fc-child-empty {
|
|
425
|
+
min-height: 130px;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
._fd-tf-wrap {
|
|
429
|
+
display: flex;
|
|
430
|
+
overflow: auto;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
._fd-tf-wrap > ._fd-drag-tool {
|
|
434
|
+
flex-shrink: 0;
|
|
435
|
+
display: flex;
|
|
436
|
+
margin: 2px;
|
|
437
|
+
height: auto;
|
|
438
|
+
overflow: auto;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
/* TableFormColumnView 组件样式 */
|
|
442
|
+
._fd-tf-col ._fd-tf-con .ant-form-item {
|
|
443
|
+
margin-bottom: 1px !important;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
._fd-tf-col {
|
|
447
|
+
display: flex;
|
|
448
|
+
flex-wrap: wrap;
|
|
449
|
+
flex-direction: column;
|
|
450
|
+
width: 180px;
|
|
451
|
+
flex-shrink: 0;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
._fd-tf-con .ant-form-item-label,
|
|
455
|
+
._fd-tf-con .van-field__label {
|
|
456
|
+
display: none !important;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
._fd-tf-con {
|
|
460
|
+
display: flex;
|
|
461
|
+
flex: 1;
|
|
462
|
+
width: 100%;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
._fd-tf-title {
|
|
466
|
+
height: 40px;
|
|
467
|
+
border-bottom: 1px solid #ebeef5;
|
|
468
|
+
margin-bottom: 0px;
|
|
469
|
+
padding: 0 5px;
|
|
470
|
+
box-sizing: border-box;
|
|
471
|
+
line-height: 32px;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
._fd-tf-required {
|
|
475
|
+
color: #f56c6c;
|
|
476
|
+
margin-right: 4px;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
._fd-tf-con ._fc-l-item > * {
|
|
480
|
+
display: none !important;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
._fd-tf-con .ant-input-number,
|
|
484
|
+
._fd-tf-con .ant-select,
|
|
485
|
+
._fd-tf-con .ant-slider,
|
|
486
|
+
._fd-tf-con .ant-cascader,
|
|
487
|
+
._fd-tf-con .ant-picker {
|
|
488
|
+
width: 100%;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
._fd-tf-col:has(._fd-tf-col) {
|
|
492
|
+
width: auto !important;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
@font-face {
|
|
496
|
+
font-family: "fc-icon";
|
|
497
|
+
src: url(fonts/fc-icons.woff) format('woff');
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.fc-icon {
|
|
501
|
+
font-family: "fc-icon" !important;
|
|
502
|
+
font-size: 16px;
|
|
503
|
+
font-style: normal;
|
|
504
|
+
-webkit-font-smoothing: antialiased;
|
|
505
|
+
-moz-osx-font-smoothing: grayscale;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.icon-write:before {
|
|
509
|
+
content: "\e60b";
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.icon-branch:before {
|
|
513
|
+
content: "\e6e3";
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.icon-device:before {
|
|
517
|
+
content: "\e6e0";
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.icon-position-left:before {
|
|
521
|
+
content: "\e6e2";
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.icon-search:before {
|
|
525
|
+
content: "\e6e1";
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.icon-expand:before {
|
|
529
|
+
content: "\e6df";
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.icon-expand-left:before {
|
|
533
|
+
content: "\e6df";
|
|
534
|
+
display: inline-block;
|
|
535
|
+
transform: rotate(-180deg);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.icon-data-select:before {
|
|
539
|
+
content: "\e6dd";
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.icon-markdown:before {
|
|
543
|
+
content: "\e893";
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.icon-grid-line:before {
|
|
547
|
+
content: "\e600";
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.icon-print:before {
|
|
551
|
+
content: "\e6de";
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.icon-city:before {
|
|
555
|
+
content: "\e64b";
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.icon-location:before {
|
|
559
|
+
content: "\e6d4";
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.icon-qrcode:before {
|
|
563
|
+
content: "\e6ce";
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.icon-input-id:before {
|
|
567
|
+
content: "\e6d1";
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.icon-iframe:before {
|
|
571
|
+
content: "\e6d2";
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.icon-audio:before {
|
|
575
|
+
content: "\e6d3";
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.icon-form-model:before {
|
|
579
|
+
content: "\e6d5";
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.icon-title:before {
|
|
583
|
+
content: "\e6d6";
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.icon-sign:before {
|
|
587
|
+
content: "\e6d7";
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.icon-address:before {
|
|
591
|
+
content: "\e6d8";
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.icon-statistic:before {
|
|
595
|
+
content: "\e6d9";
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.icon-barcode:before {
|
|
599
|
+
content: "\e6da";
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.icon-video:before {
|
|
603
|
+
content: "\e6db";
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.icon-avatar:before {
|
|
607
|
+
content: "\e6dc";
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.icon-suspend:before {
|
|
611
|
+
content: "\e6cf";
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.icon-warning:before {
|
|
615
|
+
content: "\e6d0";
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.icon-send:before {
|
|
619
|
+
content: "\e6cc";
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.icon-refresh2:before {
|
|
623
|
+
content: "\e6cd";
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.icon-ai:before {
|
|
627
|
+
content: "\e6cb";
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.icon-ai.bright{
|
|
631
|
+
background: linear-gradient(to right, #328FF7, #62E3A3);
|
|
632
|
+
-webkit-background-clip: text;
|
|
633
|
+
-webkit-text-fill-color: transparent;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.icon-column4:before {
|
|
637
|
+
content: "\e6c7";
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.icon-column3:before {
|
|
641
|
+
content: "\e6c6";
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.icon-column2:before {
|
|
645
|
+
content: "\e6c8";
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.icon-column1:before {
|
|
649
|
+
content: "\e6c9";
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.icon-layout:before {
|
|
653
|
+
content: "\e6ca";
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.icon-segmented:before {
|
|
657
|
+
content: "\e682";
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.icon-mention:before {
|
|
661
|
+
content: "\e6c5";
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.icon-input-tag:before {
|
|
665
|
+
content: "\e6c4";
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.icon-up:before {
|
|
669
|
+
content: "\e697";
|
|
670
|
+
display: inline-block;
|
|
671
|
+
transform: rotate(180deg);
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.icon-alignitems-flexstart:before {
|
|
675
|
+
content: "\e67f";
|
|
676
|
+
display: inline-block;
|
|
677
|
+
transform: rotate(180deg);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.icon-align-center:before {
|
|
681
|
+
content: "\e6a5";
|
|
682
|
+
display: inline-block;
|
|
683
|
+
transform: rotate(90deg);
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.icon-align-flexstart:before {
|
|
687
|
+
content: "\e6a4";
|
|
688
|
+
display: inline-block;
|
|
689
|
+
transform: rotate(90deg);
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.icon-align-flexend:before {
|
|
693
|
+
content: "\e6a4";
|
|
694
|
+
display: inline-block;
|
|
695
|
+
transform: rotate(-90deg);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.icon-align-spacearound:before {
|
|
699
|
+
content: "\e670";
|
|
700
|
+
display: inline-block;
|
|
701
|
+
transform: rotate(-90deg);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.icon-align-spacebetween:before {
|
|
705
|
+
content: "\e695";
|
|
706
|
+
display: inline-block;
|
|
707
|
+
transform: rotate(-90deg);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.icon-align-stretch:before {
|
|
711
|
+
content: "\e6a7";
|
|
712
|
+
display: inline-block;
|
|
713
|
+
transform: rotate(-90deg);
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.icon-align-flexend:before {
|
|
717
|
+
content: "\e6a4";
|
|
718
|
+
display: inline-block;
|
|
719
|
+
transform: rotate(-90deg);
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.icon-justify-flexend:before {
|
|
723
|
+
content: "\e6a4";
|
|
724
|
+
display: inline-block;
|
|
725
|
+
transform: rotate(180deg);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.icon-direction-row:before {
|
|
729
|
+
content: "\e68b";
|
|
730
|
+
display: inline-block;
|
|
731
|
+
transform: rotate(180deg);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.icon-direction-column:before {
|
|
735
|
+
content: "\e68b";
|
|
736
|
+
display: inline-block;
|
|
737
|
+
transform: rotate(-90deg);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.icon-direction-columnreverse:before {
|
|
741
|
+
content: "\e68b";
|
|
742
|
+
display: inline-block;
|
|
743
|
+
transform: rotate(90deg);
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.icon-arrow:before {
|
|
747
|
+
content: "\e697";
|
|
748
|
+
display: inline-block;
|
|
749
|
+
transform: rotate(180deg);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.icon-cell:before {
|
|
753
|
+
content: "\e654";
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.icon-table:before {
|
|
757
|
+
content: "\eb0a";
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.icon-next-step:before {
|
|
761
|
+
content: "\e6b4";
|
|
762
|
+
display: inline-block;
|
|
763
|
+
transform: rotateY(180deg);
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.icon-grid:before {
|
|
767
|
+
content: "\e65c";
|
|
768
|
+
display: inline-block;
|
|
769
|
+
transform: rotate(90deg);
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.icon-alignitems-stretch:before {
|
|
773
|
+
content: "\e67e";
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.icon-alignitems-flexend:before {
|
|
777
|
+
content: "\e67f";
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.icon-check:before {
|
|
781
|
+
content: "\e680";
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.icon-auto:before {
|
|
785
|
+
content: "\e681";
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.icon-config-event:before {
|
|
789
|
+
content: "\e66e";
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.icon-calendar:before {
|
|
793
|
+
content: "\e683";
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.icon-config-style:before {
|
|
797
|
+
content: "\e684";
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.icon-copy:before {
|
|
801
|
+
content: "\e676";
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.icon-config-advanced:before {
|
|
805
|
+
content: "\e686";
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.icon-config-props:before {
|
|
809
|
+
content: "\e687";
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.icon-delete-circle2:before {
|
|
813
|
+
content: "\e688";
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.icon-delete-circle:before {
|
|
817
|
+
content: "\e689";
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.icon-delete2:before {
|
|
821
|
+
content: "\e689";
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.icon-delete:before {
|
|
825
|
+
content: "\e68a";
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.icon-direction-rowreverse:before {
|
|
829
|
+
content: "\e68b";
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.icon-display-flex:before {
|
|
833
|
+
content: "\e68c";
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.icon-dialog:before {
|
|
837
|
+
content: "\e66f";
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.icon-drag:before {
|
|
841
|
+
content: "\e68e";
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.icon-display-block:before {
|
|
845
|
+
content: "\e68f";
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.icon-data:before {
|
|
849
|
+
content: "\e690";
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.icon-edit2:before {
|
|
853
|
+
content: "\e691";
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.icon-edit:before {
|
|
857
|
+
content: "\e692";
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.icon-add-col:before {
|
|
861
|
+
content: "\e693";
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.icon-display-inlineblock:before {
|
|
865
|
+
content: "\e694";
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.icon-config-base:before {
|
|
869
|
+
content: "\e6bf";
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.icon-config-validate:before {
|
|
873
|
+
content: "\e696";
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.icon-down:before {
|
|
877
|
+
content: "\e697";
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.icon-display-inline:before {
|
|
881
|
+
content: "\e698";
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.icon-eye:before {
|
|
885
|
+
content: "\e699";
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.icon-eye-close:before {
|
|
889
|
+
content: "\e69a";
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.icon-import:before {
|
|
893
|
+
content: "\e6a6";
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.icon-preview:before {
|
|
897
|
+
content: "\e69b";
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.icon-flex-nowrap:before {
|
|
901
|
+
content: "\e69c";
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.icon-folder:before {
|
|
905
|
+
content: "\e69d";
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.icon-form-circle:before {
|
|
909
|
+
content: "\e69e";
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.icon-flex-wrap:before {
|
|
913
|
+
content: "\e69f";
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.icon-form:before {
|
|
917
|
+
content: "\e6a0";
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.icon-form-item:before {
|
|
921
|
+
content: "\e6a1";
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.icon-icon:before {
|
|
925
|
+
content: "\e6a2";
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.icon-image:before {
|
|
929
|
+
content: "\e6a3";
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.icon-justify-flexstart:before {
|
|
933
|
+
content: "\e6a4";
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.icon-justify-center:before {
|
|
937
|
+
content: "\e6a5";
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.icon-justify-spacearound:before {
|
|
941
|
+
content: "\e670";
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.icon-justify-stretch:before {
|
|
945
|
+
content: "\e6a7";
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.icon-link2:before {
|
|
949
|
+
content: "\e6a8";
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.icon-justify-spacebetween:before {
|
|
953
|
+
content: "\e695";
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.icon-minus:before {
|
|
957
|
+
content: "\e6aa";
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.icon-menu2:before {
|
|
961
|
+
content: "\e6ab";
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.icon-more:before {
|
|
965
|
+
content: "\e6ac";
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.icon-menu:before {
|
|
969
|
+
content: "\e6ad";
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.icon-language:before {
|
|
973
|
+
content: "\e6ae";
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.icon-pad:before {
|
|
977
|
+
content: "\e6af";
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.icon-mobile:before {
|
|
981
|
+
content: "\e6b0";
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.icon-page-max:before {
|
|
985
|
+
content: "\e6b1";
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.icon-move:before {
|
|
989
|
+
content: "\e6b2";
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.icon-page-min:before {
|
|
993
|
+
content: "\e6b3";
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.icon-pre-step:before {
|
|
997
|
+
content: "\e6b4";
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.icon-pc:before {
|
|
1001
|
+
content: "\e6b5";
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.icon-page:before {
|
|
1005
|
+
content: "\e6b6";
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.icon-refresh:before {
|
|
1009
|
+
content: "\e6b7";
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.icon-radius:before {
|
|
1013
|
+
content: "\e6b8";
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.icon-save-filled:before {
|
|
1017
|
+
content: "\e6b9";
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.icon-question:before {
|
|
1021
|
+
content: "\e6ba";
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.icon-scroll:before {
|
|
1025
|
+
content: "\e6bb";
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.icon-script:before {
|
|
1029
|
+
content: "\e6bc";
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.icon-setting:before {
|
|
1033
|
+
content: "\e6bd";
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.icon-save:before {
|
|
1037
|
+
content: "\e6be";
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.icon-save-online:before {
|
|
1041
|
+
content: "\e6be";
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.icon-task-add:before {
|
|
1045
|
+
content: "\e68d";
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.icon-shadow:before {
|
|
1049
|
+
content: "\e6c0";
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.icon-variable:before {
|
|
1053
|
+
content: "\e6c1";
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.icon-yes:before {
|
|
1057
|
+
content: "\e6c2";
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.icon-shadow-inset:before {
|
|
1061
|
+
content: "\e6c3";
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.icon-date:before {
|
|
1065
|
+
content: "\e642";
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.icon-date-range:before {
|
|
1069
|
+
content: "\e643";
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.icon-collapse:before {
|
|
1073
|
+
content: "\e644";
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.icon-slider:before {
|
|
1077
|
+
content: "\e665";
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.icon-switch:before {
|
|
1081
|
+
content: "\e646";
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.icon-subform:before {
|
|
1085
|
+
content: "\e647";
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.icon-time-range:before {
|
|
1089
|
+
content: "\e685";
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.icon-tree-select:before {
|
|
1093
|
+
content: "\e649";
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.icon-value:before {
|
|
1097
|
+
content: "\e64a";
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.icon-table-form3:before {
|
|
1101
|
+
content: "\e6a9";
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.icon-alert:before {
|
|
1105
|
+
content: "\e64c";
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.icon-card:before {
|
|
1109
|
+
content: "\e64d";
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.icon-checkbox:before {
|
|
1113
|
+
content: "\e64e";
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.icon-cascader:before {
|
|
1117
|
+
content: "\e64f";
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.icon-button:before {
|
|
1121
|
+
content: "\e650";
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.icon-data-table:before {
|
|
1125
|
+
content: "\e651";
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.icon-group:before {
|
|
1129
|
+
content: "\e652";
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.icon-divider:before {
|
|
1133
|
+
content: "\e653";
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.icon-flex:before {
|
|
1137
|
+
content: "\e654";
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.icon-descriptions:before {
|
|
1141
|
+
content: "\e655";
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.icon-html:before {
|
|
1145
|
+
content: "\e656";
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.icon-editor:before {
|
|
1149
|
+
content: "\e657";
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.icon-input:before {
|
|
1153
|
+
content: "\e658";
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.icon-link:before {
|
|
1157
|
+
content: "\e659";
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.icon-password:before {
|
|
1161
|
+
content: "\e65a";
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.icon-radio:before {
|
|
1165
|
+
content: "\e65b";
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.icon-row:before {
|
|
1169
|
+
content: "\e65c";
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.icon-inline:before {
|
|
1173
|
+
content: "\e65d";
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.icon-rate:before {
|
|
1177
|
+
content: "\e65e";
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.icon-color:before {
|
|
1181
|
+
content: "\e65f";
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.icon-select:before {
|
|
1185
|
+
content: "\e660";
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.icon-json:before {
|
|
1189
|
+
content: "\e661";
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.icon-number:before {
|
|
1193
|
+
content: "\e662";
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.icon-space:before {
|
|
1197
|
+
content: "\e664";
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.icon-step-form:before {
|
|
1201
|
+
content: "\e663";
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.icon-table-form:before {
|
|
1205
|
+
content: "\e666";
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.icon-table-form2:before {
|
|
1209
|
+
content: "\e667";
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.icon-time:before {
|
|
1213
|
+
content: "\e668";
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.icon-span:before {
|
|
1217
|
+
content: "\e669";
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.icon-textarea:before {
|
|
1221
|
+
content: "\e66a";
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.icon-tooltip:before {
|
|
1225
|
+
content: "\e66b";
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.icon-slot:before {
|
|
1229
|
+
content: "\e66c";
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.icon-transfer:before {
|
|
1233
|
+
content: "\e66d";
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.icon-upload:before {
|
|
1237
|
+
content: "\e673";
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.icon-tag:before {
|
|
1241
|
+
content: "\e671";
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.icon-watermark:before {
|
|
1245
|
+
content: "\e672";
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.icon-tab:before {
|
|
1249
|
+
content: "\e674";
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.icon-tree:before {
|
|
1253
|
+
content: "\e675";
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
.icon-table:before {
|
|
1257
|
+
content: "\e677";
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.icon-add-child:before {
|
|
1261
|
+
content: "\e678";
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
.icon-add2:before {
|
|
1265
|
+
content: "\e679";
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
.icon-add:before {
|
|
1269
|
+
content: "\e67a";
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.icon-alignitems-baseline:before {
|
|
1273
|
+
content: "\e67b";
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
.icon-add-circle:before {
|
|
1277
|
+
content: "\e67c";
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.icon-alignitems-center:before {
|
|
1281
|
+
content: "\e67d";
|
|
1282
|
+
}
|