easy3wui 1.5.11 → 1.6.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.
package/assets/index.css CHANGED
@@ -11,6 +11,10 @@
11
11
  width: 368px;
12
12
  margin: 0 auto;
13
13
  z-index: 100;
14
+ background-color: #fff;
15
+ border: 1px solid #0000001f;
16
+ border-radius: 0.8em;
17
+ padding: 20px;
14
18
  }
15
19
  .e3wLoginMain .e3wLoginTabs {
16
20
  padding: 0 2px;
@@ -91,6 +95,14 @@
91
95
  .e3wCardForm .formes {
92
96
  float: left;
93
97
  }
98
+ .e3wCardForm :global .ant-card-head {
99
+ padding: 0 !important;
100
+ margin: 0 12px;
101
+ border: none;
102
+ }
103
+ .e3wCardForm :global .ant-card-body {
104
+ padding: 0 !important;
105
+ }
94
106
  s {
95
107
  display: inline-block;
96
108
  width: 3px;
@@ -192,7 +204,7 @@ s {
192
204
  background-repeat: no-repeat;
193
205
  background-position: center;
194
206
  background-size: 100%;
195
- padding: 40px 0 0 0;
207
+ padding: 60px 0 0 0;
196
208
  position: relative;
197
209
  }
198
210
  .e3wUserLayoutTop {
@@ -250,6 +262,7 @@ s {
250
262
  width: 100%;
251
263
  height: 50px;
252
264
  z-index: 99;
265
+ position: fixed;
253
266
  }
254
267
  .e3wLoginLayoutHeader {
255
268
  padding: 0 12px 0 0;
@@ -435,15 +448,218 @@ s {
435
448
  }
436
449
  }
437
450
  /*初始化部分*/
451
+ /* #5867ad */
438
452
  /*流程图部分*/
439
453
  .flowmain {
440
454
  margin: auto;
441
455
  width: 100%;
442
456
  background: #fff;
443
457
  }
444
- .floatcenter {
445
- position: relative;
446
- left: 67%;
458
+ .flowtop {
459
+ width: 100%;
460
+ }
461
+ .flowtop .floatcenter {
462
+ width: 90%;
463
+ margin: 0 auto;
464
+ /*
465
+ 公式: 线宽 (100% / n -22px) / 2
466
+ 思路:
467
+ 虚拟: 将每个节点 + 左侧线宽 + 右侧线宽看成一个块,所有块组合成整体top 虚拟的每个节点块长度都相等 除了首尾节点 其它节点的宽为: 100% / n
468
+ 实际:
469
+ 第一个节点: 左侧填充一个线宽 + 节点 + 右侧两个线 (100% / n -22px) / 2 * 3 + 22px 节点 + 3个线宽
470
+ 最后一个节点: 节点 + 右侧填充一个线宽 (100% / n -22px) / 2 + 22px 节点 + 1个线宽
471
+ 其它节点: 节点 + 右侧两个线 (100% / n -22px) / 2 * 2 + 22px 节点 + 2个线宽
472
+ 最终确保: 节点 + 填充 + 线 = top宽
473
+ 每个节点都有属于不与其它节点公用的两个线宽的长度
474
+ 构图: -o--o--o-
475
+ 流程节点:
476
+ 节点: 22px
477
+ 线宽: (100% / n -22px) / 2
478
+ */
479
+ }
480
+ .flowtop .floatcenter .renderTopTemp2:first-child {
481
+ width: calc((100% / 2 - 22px) / 2 * 3 + 22px);
482
+ padding-left: calc((100% / 2 - 22px) / 2);
483
+ }
484
+ .flowtop .floatcenter .renderTopTemp2 {
485
+ width: calc(100% / 2);
486
+ float: left;
487
+ }
488
+ .flowtop .floatcenter .renderTopTemp2 .flowline2 {
489
+ float: left;
490
+ margin-top: 15px;
491
+ height: 4px;
492
+ width: calc(100% - 22px);
493
+ }
494
+ .flowtop .floatcenter .renderTopTemp2:last-child {
495
+ width: calc((100% / 2 - 22px) / 2 + 22px);
496
+ padding-right: calc((100% / 2 - 22px) / 2);
497
+ }
498
+ .flowtop .floatcenter .renderTopTemp3:first-child {
499
+ width: calc((100% / 3 - 22px) / 2 * 3 + 22px);
500
+ padding-left: calc((100% / 3 - 22px) / 2);
501
+ }
502
+ .flowtop .floatcenter .renderTopTemp3 {
503
+ width: calc(100% / 3);
504
+ float: left;
505
+ }
506
+ .flowtop .floatcenter .renderTopTemp3 .flowline3 {
507
+ float: left;
508
+ margin-top: 15px;
509
+ height: 4px;
510
+ width: calc(100% - 22px);
511
+ }
512
+ .flowtop .floatcenter .renderTopTemp3:last-child {
513
+ width: calc((100% / 3 - 22px) / 2 + 22px);
514
+ padding-right: calc((100% / 3 - 22px) / 2);
515
+ }
516
+ .flowtop .floatcenter .renderTopTemp4:first-child {
517
+ width: calc((100% / 4 - 22px) / 2 * 3 + 22px);
518
+ padding-left: calc((100% / 4 - 22px) / 2);
519
+ }
520
+ .flowtop .floatcenter .renderTopTemp4 {
521
+ width: calc(100% / 4);
522
+ float: left;
523
+ }
524
+ .flowtop .floatcenter .renderTopTemp4 .flowline4 {
525
+ float: left;
526
+ margin-top: 15px;
527
+ height: 4px;
528
+ width: calc(100% - 22px);
529
+ }
530
+ .flowtop .floatcenter .renderTopTemp4:last-child {
531
+ width: calc((100% / 4 - 22px) / 2 + 22px);
532
+ padding-right: calc((100% / 4 - 22px) / 2);
533
+ }
534
+ .flowtop .floatcenter .renderTopTemp5:first-child {
535
+ width: calc((100% / 5 - 22px) / 2 * 3 + 22px);
536
+ padding-left: calc((100% / 5 - 22px) / 2);
537
+ }
538
+ .flowtop .floatcenter .renderTopTemp5 {
539
+ width: calc(100% / 5);
540
+ float: left;
541
+ }
542
+ .flowtop .floatcenter .renderTopTemp5 .flowline5 {
543
+ float: left;
544
+ margin-top: 15px;
545
+ height: 4px;
546
+ width: calc(100% - 22px);
547
+ }
548
+ .flowtop .floatcenter .renderTopTemp5:last-child {
549
+ width: calc((100% / 5 - 22px) / 2 + 22px);
550
+ padding-right: calc((100% / 5 - 22px) / 2);
551
+ }
552
+ .flowtop .floatcenter .renderTopTemp6:first-child {
553
+ width: calc((100% / 6 - 22px) / 2 * 3 + 22px);
554
+ padding-left: calc((100% / 6 - 22px) / 2);
555
+ }
556
+ .flowtop .floatcenter .renderTopTemp6 {
557
+ width: calc(100% / 6);
558
+ float: left;
559
+ }
560
+ .flowtop .floatcenter .renderTopTemp6 .flowline6 {
561
+ float: left;
562
+ margin-top: 15px;
563
+ height: 4px;
564
+ width: calc(100% - 22px);
565
+ }
566
+ .flowtop .floatcenter .renderTopTemp6:last-child {
567
+ width: calc((100% / 6 - 22px) / 2 + 22px);
568
+ padding-right: calc((100% / 6 - 22px) / 2);
569
+ }
570
+ .flowtop .floatcenter .renderTopTemp7:first-child {
571
+ width: calc((100% / 7 - 22px) / 2 * 3 + 22px);
572
+ padding-left: calc((100% / 7 - 22px) / 2);
573
+ }
574
+ .flowtop .floatcenter .renderTopTemp7 {
575
+ width: calc(100% / 7);
576
+ float: left;
577
+ }
578
+ .flowtop .floatcenter .renderTopTemp7 .flowline7 {
579
+ float: left;
580
+ margin-top: 15px;
581
+ height: 4px;
582
+ width: calc(100% - 22px);
583
+ }
584
+ .flowtop .floatcenter .renderTopTemp7:last-child {
585
+ width: calc((100% / 7 - 22px) / 2 + 22px);
586
+ padding-right: calc((100% / 7 - 22px) / 2);
587
+ }
588
+ .flowtop .floatcenter .renderTopTemp8:first-child {
589
+ width: calc((100% / 8 - 22px) / 2 * 3 + 22px);
590
+ padding-left: calc((100% / 8 - 22px) / 2);
591
+ }
592
+ .flowtop .floatcenter .renderTopTemp8 {
593
+ width: calc(100% / 8);
594
+ float: left;
595
+ }
596
+ .flowtop .floatcenter .renderTopTemp8 .flowline8 {
597
+ float: left;
598
+ margin-top: 15px;
599
+ height: 4px;
600
+ width: calc(100% - 22px);
601
+ }
602
+ .flowtop .floatcenter .renderTopTemp8:last-child {
603
+ width: calc((100% / 8 - 22px) / 2 + 22px);
604
+ padding-right: calc((100% / 8 - 22px) / 2);
605
+ }
606
+ .flowtop .floatcenter .renderTopTemp9:first-child {
607
+ width: calc((100% / 9 - 22px) / 2 * 3 + 22px);
608
+ padding-left: calc((100% / 9 - 22px) / 2);
609
+ }
610
+ .flowtop .floatcenter .renderTopTemp9 {
611
+ width: calc(100% / 9);
612
+ float: left;
613
+ }
614
+ .flowtop .floatcenter .renderTopTemp9 .flowline9 {
615
+ float: left;
616
+ margin-top: 15px;
617
+ height: 4px;
618
+ width: calc(100% - 22px);
619
+ }
620
+ .flowtop .floatcenter .renderTopTemp9:last-child {
621
+ width: calc((100% / 9 - 22px) / 2 + 22px);
622
+ padding-right: calc((100% / 9 - 22px) / 2);
623
+ }
624
+ .flowmid {
625
+ width: 100%;
626
+ height: 34px;
627
+ }
628
+ .flowmid .floatcenter {
629
+ width: 90%;
630
+ margin: 0 auto;
631
+ }
632
+ .flowmid .floatcenter div.flowtext2 {
633
+ width: calc(100% / 2);
634
+ float: left;
635
+ }
636
+ .flowmid .floatcenter div.flowtext3 {
637
+ width: calc(100% / 3);
638
+ float: left;
639
+ }
640
+ .flowmid .floatcenter div.flowtext4 {
641
+ width: calc(100% / 4);
642
+ float: left;
643
+ }
644
+ .flowmid .floatcenter div.flowtext5 {
645
+ width: calc(100% / 5);
646
+ float: left;
647
+ }
648
+ .flowmid .floatcenter div.flowtext6 {
649
+ width: calc(100% / 6);
650
+ float: left;
651
+ }
652
+ .flowmid .floatcenter div.flowtext7 {
653
+ width: calc(100% / 7);
654
+ float: left;
655
+ }
656
+ .flowmid .floatcenter div.flowtext8 {
657
+ width: calc(100% / 8);
658
+ float: left;
659
+ }
660
+ .flowmid .floatcenter div.flowtext9 {
661
+ width: calc(100% / 9);
662
+ float: left;
447
663
  }
448
664
  .floatcenter2_1 {
449
665
  position: absolute;
@@ -735,147 +951,63 @@ s {
735
951
  color: #fff;
736
952
  /*浮动区块居中,必须配合.float-center使用*/
737
953
  position: relative;
738
- left: -50%;
739
- }
740
- /*renderTop有几个大节点时(3-9)*/
741
- .flowmain .flowline2 {
742
- float: left;
743
- margin-top: 15px;
744
- width: 30.8%;
745
- height: 4px;
746
- /*浮动区块居中,必须配合.float-center使用*/
747
- position: relative;
748
- left: -50%;
749
- }
750
- .flowmain .flowline3 {
751
- float: left;
752
- margin-top: 15px;
753
- width: 30.6%;
754
- height: 4px;
755
- /*浮动区块居中,必须配合.float-center使用*/
756
- position: relative;
757
- left: -50%;
758
- }
759
- .flowmain .flowline4 {
760
- float: left;
761
- margin-top: 15px;
762
- width: 19.8%;
763
- height: 4px;
764
- /*浮动区块居中,必须配合.float-center使用*/
765
- position: relative;
766
- left: -50%;
767
- }
768
- .flowmain .flowline5 {
769
- float: left;
770
- margin-top: 15px;
771
- width: 14.4%;
772
- height: 4px;
773
- /*浮动区块居中,必须配合.float-center使用*/
774
- position: relative;
775
- left: -50%;
776
- }
777
- .flowmain .flowline6 {
778
- float: left;
779
- margin-top: 15px;
780
- width: 11.2%;
781
- height: 4px;
782
- /*浮动区块居中,必须配合.float-center使用*/
783
- position: relative;
784
- left: -50%;
785
- }
786
- .flowmain .flowline7 {
787
- float: left;
788
- margin-top: 15px;
789
- width: 9.03%;
790
- height: 4px;
791
- /*浮动区块居中,必须配合.float-center使用*/
792
- position: relative;
793
- left: -50%;
794
954
  }
795
- .flowmain .flowline8 {
796
- float: left;
797
- margin-top: 15px;
798
- width: 7.4%;
799
- height: 4px;
800
- /*浮动区块居中,必须配合.float-center使用*/
801
- position: relative;
802
- left: -50%;
803
- }
804
- .flowmain .flowline9 {
805
- float: left;
806
- margin-top: 15px;
807
- width: 6.348%;
808
- height: 4px;
809
- /*浮动区块居中,必须配合.float-center使用*/
810
- position: relative;
811
- left: -50%;
812
- }
813
- .flowmid {
814
- height: 34px;
815
- }
816
- /*renderMid下的有几个flowtext(3-9)*/
817
- .flowmid .flowtext2 {
818
- width: 32.4%;
819
- float: left;
820
- /*浮动区块居中,必须配合.float-center使用*/
821
- position: relative;
822
- left: -65.5%;
823
- }
824
- .flowmid .flowtext3 {
825
- width: 32.4%;
826
- float: left;
827
- /*浮动区块居中,必须配合.float-center使用*/
828
- position: relative;
829
- left: -65.5%;
830
- }
831
- .flowmid .flowtext4 {
832
- width: 21.6%;
833
- float: left;
834
- /*浮动区块居中,必须配合.float-center使用*/
835
- position: relative;
836
- left: -60%;
837
- }
838
- .flowmid .flowtext5 {
839
- width: 16.2%;
840
- float: left;
841
- /*浮动区块居中,必须配合.float-center使用*/
842
- position: relative;
843
- left: -57.5%;
844
- }
845
- .flowmid .flowtext6 {
846
- width: 13.1%;
955
+ /* 主节点活动节点样式*/
956
+ .flowmain .flowcircle-active-haierblue {
847
957
  float: left;
958
+ margin-top: 5px;
959
+ width: 22px;
960
+ height: 22px;
961
+ line-height: 22px;
962
+ text-align: center;
963
+ border-radius: 50%;
964
+ color: #fff;
848
965
  /*浮动区块居中,必须配合.float-center使用*/
849
966
  position: relative;
850
- left: -56%;
851
967
  }
852
- .flowmid .flowtext7 {
853
- width: 10.8%;
854
- float: left;
855
- /*浮动区块居中,必须配合.float-center使用*/
856
- position: relative;
857
- left: -54.8%;
968
+ .flowmain .flowcircle-active-haierblue::before {
969
+ border-bottom: 2px solid #5867ad;
970
+ content: '';
971
+ height: 2px;
972
+ width: 100%;
973
+ position: absolute;
974
+ bottom: -4px;
975
+ right: 0;
858
976
  }
859
- .flowmid .flowtext8 {
860
- width: 9.13%;
977
+ .flowmain .flowcircle-active-haierorange {
861
978
  float: left;
979
+ margin-top: 5px;
980
+ width: 22px;
981
+ height: 22px;
982
+ line-height: 22px;
983
+ text-align: center;
984
+ border-radius: 50%;
985
+ color: #fff;
862
986
  /*浮动区块居中,必须配合.float-center使用*/
863
987
  position: relative;
864
- left: -54%;
865
988
  }
866
- .flowmid .flowtext9 {
867
- width: 8%;
868
- float: left;
869
- /*浮动区块居中,必须配合.float-center使用*/
870
- position: relative;
871
- left: -53%;
989
+ .flowmain .flowcircle-active-haierorange::before {
990
+ border-bottom: 2px solid #ad7c59;
991
+ content: '';
992
+ height: 2px;
993
+ width: 100%;
994
+ position: absolute;
995
+ bottom: -4px;
996
+ right: 0;
872
997
  }
998
+ /*renderTop有几个大节点时(3-9)*/
873
999
  .flowmid .floawt1 {
874
1000
  text-align: center;
875
1001
  height: 24px;
876
1002
  line-height: 32px;
877
1003
  font-size: 14px;
878
1004
  }
1005
+ .flowmid .floawt1detail {
1006
+ text-align: center;
1007
+ height: 24px;
1008
+ line-height: 18px;
1009
+ font-size: 14px;
1010
+ }
879
1011
  .flowmid .floawt2 {
880
1012
  text-align: center;
881
1013
  height: 20px;
@@ -901,7 +1033,7 @@ s {
901
1033
  .flowbottom .flowdoc {
902
1034
  display: inline-block;
903
1035
  margin: 0 2px;
904
- height: 35px;
1036
+ height: 30px;
905
1037
  text-align: center;
906
1038
  /*浮动区块居中,必须配合.float-center使用*/
907
1039
  position: relative;
@@ -1129,12 +1261,14 @@ s {
1129
1261
  }
1130
1262
  .flowmain .borderblue {
1131
1263
  border: 1px solid #5867ad;
1264
+ border-radius: 4px;
1132
1265
  }
1133
1266
  .flowmain .borderorange {
1134
1267
  border: 1px solid #ad7c59;
1135
1268
  }
1136
1269
  .flowmain .borderblueDashed {
1137
1270
  border: 1px dashed #5867ad;
1271
+ border-radius: 4px;
1138
1272
  }
1139
1273
  .flowmain .borderorangeDashed {
1140
1274
  border: 1px dashed #ad7c59;
@@ -1147,20 +1281,22 @@ s {
1147
1281
  }
1148
1282
  .flowmain .flowbottomtextblue {
1149
1283
  text-align: center;
1150
- line-height: 35px;
1284
+ line-height: 30px;
1151
1285
  color: #5867ad;
1152
1286
  }
1153
1287
  .flowmain .flowdoc img {
1154
1288
  display: inline-block;
1155
1289
  position: absolute;
1156
- right: 0;
1157
- bottom: 0;
1290
+ right: -1px;
1291
+ bottom: -1px;
1158
1292
  z-index: 1;
1159
1293
  width: 21px;
1294
+ border-bottom-right-radius: 4px;
1160
1295
  }
1161
1296
  .flowmain .flowbottomtextorange {
1162
1297
  text-align: center;
1163
- line-height: 35px;
1298
+ line-height: 30px;
1299
+ border-radius: 4px;
1164
1300
  }
1165
1301
  .flowmain .flowbottomtextorange a {
1166
1302
  color: #ad7c59;
@@ -1168,8 +1304,9 @@ s {
1168
1304
  }
1169
1305
  .flowmain .flowbottomtextgrey {
1170
1306
  text-align: center;
1171
- line-height: 35px;
1307
+ line-height: 30px;
1172
1308
  color: #999999;
1309
+ border-radius: 4px;
1173
1310
  }
1174
1311
  .flowmain .flowbottomtextgrey a {
1175
1312
  text-align: center;
@@ -1290,6 +1427,36 @@ s {
1290
1427
  margin-left: -75px;
1291
1428
  }
1292
1429
  /*一个节点*/
1430
+ /* 流程图状态颜色 */
1431
+ .common {
1432
+ height: 12px;
1433
+ width: 12px;
1434
+ }
1435
+ .planDate-style {
1436
+ color: #000000;
1437
+ font-weight: normal;
1438
+ margin-left: 12px;
1439
+ }
1440
+ .planDate-style .wait-style sup {
1441
+ height: 12px;
1442
+ width: 12px;
1443
+ background-color: #bfbfbf;
1444
+ }
1445
+ .planDate-style .delay-style sup {
1446
+ height: 12px;
1447
+ width: 12px;
1448
+ background-color: #fa8c16;
1449
+ }
1450
+ .planDate-style .normal-style sup {
1451
+ height: 12px;
1452
+ width: 12px;
1453
+ background-color: #52c41a;
1454
+ }
1455
+ .planDate-style .normal-style :global .ant-scroll-number,
1456
+ .planDate-style .delay-style :global .ant-scroll-number,
1457
+ .planDate-style .wait-style :global .ant-scroll-number {
1458
+ transform: translate(2px, -2px);
1459
+ }
1293
1460
  .scrollY .ant-table-tbody > .ant-table-row .e3wGridShortText {
1294
1461
  text-align: center;
1295
1462
  }
@@ -1314,6 +1481,34 @@ s {
1314
1481
  white-space: nowrap;
1315
1482
  text-align: center;
1316
1483
  }
1484
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
1485
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
1486
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
1487
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
1488
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
1489
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
1490
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
1491
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
1492
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
1493
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
1494
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
1495
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
1496
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
1497
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
1498
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
1499
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {
1500
+ padding: 5px 8px;
1501
+ }
1502
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr,
1503
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr,
1504
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr,
1505
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr,
1506
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr,
1507
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr,
1508
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr,
1509
+ .scrollX .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr {
1510
+ background: #fafafa;
1511
+ }
1317
1512
  .scrollX .ant-table-tbody > .ant-table-row td {
1318
1513
  max-width: 240px;
1319
1514
  word-break: keep-all;
@@ -1341,12 +1536,33 @@ s {
1341
1536
  white-space: nowrap;
1342
1537
  overflow: hidden;
1343
1538
  }
1539
+ .scrollX .ant-spin-container {
1540
+ padding: 12px;
1541
+ }
1344
1542
  .scrollPrint .ant-table-thead > tr > th {
1345
1543
  text-align: center;
1346
1544
  }
1545
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
1546
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
1547
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
1548
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
1549
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
1550
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
1551
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
1552
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
1553
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
1554
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
1555
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
1556
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
1557
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
1558
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
1559
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
1560
+ .scrollPrint .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {
1561
+ padding: 5px 8px;
1562
+ }
1347
1563
  .scrollPrint .ant-table-tbody > .ant-table-row td {
1348
1564
  max-width: 240px;
1349
- word-break: keep-all;
1565
+ word-break: normal;
1350
1566
  }
1351
1567
  .scrollPrint .ant-table-tbody > .ant-table-row .e3wText {
1352
1568
  text-align: left;
@@ -1364,6 +1580,9 @@ s {
1364
1580
  max-width: 240px;
1365
1581
  text-align: left;
1366
1582
  }
1583
+ .scrollPrint .ant-spin-container {
1584
+ padding: 12px;
1585
+ }
1367
1586
  .butt {
1368
1587
  background-color: #1890ff;
1369
1588
  color: #fff;
@@ -1388,20 +1607,107 @@ s {
1388
1607
  .ant-upload-list-item .anticon-cross {
1389
1608
  right: -2px;
1390
1609
  }
1610
+ .e3wFormPageNoBorder {
1611
+ margin: 12px;
1612
+ }
1613
+ .e3wFormPageNoBorder > div > .ant-row {
1614
+ padding: 3px;
1615
+ }
1616
+ .e3wFormPageNoBorder > div > .ant-row .ant-btn {
1617
+ height: 24px;
1618
+ color: #5468b2;
1619
+ }
1620
+ .e3wFormPageNoBorder .hasAfterBtns :global .ant-calendar-picker {
1621
+ min-width: 100% !important;
1622
+ }
1623
+ .e3wFormPage {
1624
+ border-top: 1px solid #e8e8e8;
1625
+ border-left: 1px solid #e8e8e8;
1626
+ border-right: 1px solid #e8e8e8;
1627
+ margin: 12px;
1628
+ }
1629
+ .e3wFormPage > div > .ant-row {
1630
+ padding: 3px;
1631
+ border-bottom: 1px solid #e8e8e8;
1632
+ }
1633
+ .e3wFormPage > div > .ant-row .ant-btn {
1634
+ height: 24px;
1635
+ color: #5468b2;
1636
+ }
1637
+ .e3wFormPage .hasAfterBtns :global .ant-calendar-picker {
1638
+ min-width: 100% !important;
1639
+ }
1391
1640
  .e3wFormItem .ant-form-item {
1392
1641
  margin-bottom: 8px;
1393
1642
  }
1643
+ .formContent:not(:first-child) {
1644
+ padding-left: 3px;
1645
+ }
1646
+ .formContent :global .ant-input-group-wrapper {
1647
+ vertical-align: middle;
1648
+ }
1649
+ .formContent :global .ant-form-item-label {
1650
+ line-height: 24px;
1651
+ }
1652
+ .formContent :global .ant-form-item-control {
1653
+ line-height: 24px;
1654
+ }
1655
+ .formContent :global .ant-form-item-required::before {
1656
+ margin-left: -10px;
1657
+ }
1658
+ .formContent :global .ant-form-item-label {
1659
+ padding-left: 12px;
1660
+ }
1661
+ .formContentAlone:not(:first-child) {
1662
+ padding-left: 3px;
1663
+ }
1664
+ .formContentAlone:not(:first-child) {
1665
+ padding-left: 3px;
1666
+ }
1667
+ .formContentAlone :global .ant-input-group-wrapper {
1668
+ vertical-align: middle;
1669
+ }
1670
+ .formContentAlone :global .ant-form-item-label {
1671
+ line-height: 24px;
1672
+ }
1673
+ .formContentAlone :global .ant-form-item-control {
1674
+ line-height: 24px;
1675
+ }
1676
+ .formContentAlone :global .ant-form-item-required::before {
1677
+ margin-left: -10px;
1678
+ }
1679
+ .formContentAlone :global .ant-form-item-label {
1680
+ padding-left: 12px;
1681
+ }
1682
+ .formContentAlone :global .ant-input-number {
1683
+ border-radius: 4px 0 0 4px;
1684
+ }
1685
+ .formContentAlone :global .ant-form-item-required::before {
1686
+ margin-left: -10px;
1687
+ }
1688
+ .formContentAlone :global .ant-form-item-label {
1689
+ padding-left: 12px;
1690
+ }
1691
+ .countContent:after {
1692
+ content: attr(data-count);
1693
+ color: rgba(0, 0, 0, 0.45);
1694
+ pointer-events: none;
1695
+ float: right;
1696
+ white-space: nowrap;
1697
+ }
1394
1698
  .e3wFootBtn {
1395
1699
  margin: 0px 8px;
1396
1700
  }
1701
+ .e3wFormBtn {
1702
+ margin-right: 8px;
1703
+ }
1397
1704
  .positionDiv {
1398
1705
  position: absolute;
1399
- right: 32px;
1400
- top: 16px;
1706
+ right: 12px;
1707
+ top: 10px;
1401
1708
  }
1402
1709
  .e3wPositionA {
1403
1710
  font-size: 15px;
1404
- color: #5468b2;
1405
1711
  font-weight: 900;
1406
1712
  margin-left: 15px;
1407
1713
  }