easy3wui 1.4.41 → 1.4.92
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/README.md +7 -1
- package/assets/btn.css +9 -3
- package/assets/captcha.css +0 -1
- package/assets/card.css +8 -0
- package/assets/flow.css +287 -133
- package/assets/formPage.css +85 -2
- package/assets/gridPage.css +52 -6
- package/assets/index.css +444 -147
- package/assets/login.css +5 -1
- package/assets/userLayout.css +2 -1
- package/lib/Easy3wAESDecrypt/index.js +21 -0
- package/lib/Easy3wAESEncrypt/index.js +20 -0
- package/lib/Easy3wButton/index.js +22 -15
- package/lib/Easy3wButtonOne/index.js +6 -9
- package/lib/Easy3wCaHandler/index.js +1 -1
- package/lib/Easy3wCard/index.js +4 -3
- package/lib/Easy3wDownLoad/Easy3wRCView.js +65 -0
- package/lib/Easy3wDownLoad/index.js +38 -61
- package/lib/Easy3wFlow/index.js +216 -36
- package/lib/Easy3wFormPage/easy3wFormPage.less +37 -0
- package/lib/Easy3wFormPage/index.js +610 -149
- package/lib/Easy3wGridCheckBox/index.js +9 -9
- package/lib/Easy3wGridDatePicker/index.js +10 -10
- package/lib/Easy3wGridDateTimePicker/index.js +10 -10
- package/lib/Easy3wGridInput/index.js +12 -11
- package/lib/Easy3wGridInputNumber/index.js +12 -11
- package/lib/Easy3wGridInputNumberFormat/index.js +12 -11
- package/lib/Easy3wGridPage/index.js +22 -37
- package/lib/Easy3wGridRadio/index.js +11 -10
- package/lib/Easy3wGridSelect/index.js +9 -9
- package/lib/Easy3wGridTextArea/index.js +11 -10
- package/lib/Easy3wLogin/index.js +19 -26
- package/lib/Easy3wModal/index.js +4 -4
- package/lib/Easy3wPositionButton/easy3wPositionButton.less +8 -0
- package/lib/Easy3wPositionButton/index.js +5 -5
- package/lib/Easy3wQryGrid/index.js +16 -8
- package/lib/Easy3wResult/index.js +9 -3
- package/lib/Easy3wTagSelect/index.js +7 -3
- package/lib/Easy3wUpload/index.js +103 -45
- package/lib/Easy3wUploadB/index.js +101 -50
- package/lib/Easy3wUploadM/index.js +84 -39
- package/lib/index.js +6 -123
- package/package.json +4 -4
- package/lib/Easy3wNewFormPage/index.js +0 -1649
- package/lib/Easy3wNewGridCheckBox/index.js +0 -63
- package/lib/Easy3wNewGridDatePicker/index.js +0 -85
- package/lib/Easy3wNewGridDateTimePicker/index.js +0 -117
- package/lib/Easy3wNewGridInput/index.js +0 -73
- package/lib/Easy3wNewGridInputNumber/index.js +0 -80
- package/lib/Easy3wNewGridInputNumberFormat/index.js +0 -90
- package/lib/Easy3wNewGridPage/index.js +0 -620
- package/lib/Easy3wNewGridRadio/index.js +0 -65
- package/lib/Easy3wNewGridSelect/index.js +0 -89
- package/lib/Easy3wNewGridTextArea/index.js +0 -69
- package/lib/Easy3wNewQryGrid/index.js +0 -694
- package/lib/Easy3wNewUpload/index.js +0 -419
- package/lib/Easy3wNewUploadB/index.js +0 -953
- package/lib/Easy3wNewUploadM/index.js +0 -447
package/assets/index.css
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
display: block;
|
|
3
3
|
width: 100%;
|
|
4
4
|
font-size: 18px !important;
|
|
5
|
-
padding: 0;
|
|
6
5
|
}
|
|
7
6
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
8
7
|
/* stylelint-disable no-duplicate-selectors */
|
|
@@ -12,6 +11,10 @@
|
|
|
12
11
|
width: 368px;
|
|
13
12
|
margin: 0 auto;
|
|
14
13
|
z-index: 100;
|
|
14
|
+
background-color: #fff;
|
|
15
|
+
border: 1px solid #0000001f;
|
|
16
|
+
border-radius: 0.8em;
|
|
17
|
+
padding: 20px;
|
|
15
18
|
}
|
|
16
19
|
.e3wLoginMain .e3wLoginTabs {
|
|
17
20
|
padding: 0 2px;
|
|
@@ -22,7 +25,7 @@
|
|
|
22
25
|
line-height: 24px;
|
|
23
26
|
}
|
|
24
27
|
.e3wLoginMain .e3wLoginTabs :global .ant-input-affix-wrapper .ant-input:not(:first-child) {
|
|
25
|
-
padding-left:
|
|
28
|
+
padding-left: 34px;
|
|
26
29
|
}
|
|
27
30
|
.e3wLoginMain :global .ant-tabs .ant-tabs-bar {
|
|
28
31
|
border-bottom: 0;
|
|
@@ -92,6 +95,14 @@
|
|
|
92
95
|
.e3wCardForm .formes {
|
|
93
96
|
float: left;
|
|
94
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
|
+
}
|
|
95
106
|
s {
|
|
96
107
|
display: inline-block;
|
|
97
108
|
width: 3px;
|
|
@@ -193,7 +204,7 @@ s {
|
|
|
193
204
|
background-repeat: no-repeat;
|
|
194
205
|
background-position: center;
|
|
195
206
|
background-size: 100%;
|
|
196
|
-
padding:
|
|
207
|
+
padding: 60px 0 0 0;
|
|
197
208
|
position: relative;
|
|
198
209
|
}
|
|
199
210
|
.e3wUserLayoutTop {
|
|
@@ -251,6 +262,7 @@ s {
|
|
|
251
262
|
width: 100%;
|
|
252
263
|
height: 50px;
|
|
253
264
|
z-index: 99;
|
|
265
|
+
position: fixed;
|
|
254
266
|
}
|
|
255
267
|
.e3wLoginLayoutHeader {
|
|
256
268
|
padding: 0 12px 0 0;
|
|
@@ -436,15 +448,218 @@ s {
|
|
|
436
448
|
}
|
|
437
449
|
}
|
|
438
450
|
/*初始化部分*/
|
|
451
|
+
/* #5867ad */
|
|
439
452
|
/*流程图部分*/
|
|
440
453
|
.flowmain {
|
|
441
454
|
margin: auto;
|
|
442
455
|
width: 100%;
|
|
443
456
|
background: #fff;
|
|
444
457
|
}
|
|
445
|
-
.
|
|
446
|
-
|
|
447
|
-
|
|
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;
|
|
448
663
|
}
|
|
449
664
|
.floatcenter2_1 {
|
|
450
665
|
position: absolute;
|
|
@@ -736,147 +951,63 @@ s {
|
|
|
736
951
|
color: #fff;
|
|
737
952
|
/*浮动区块居中,必须配合.float-center使用*/
|
|
738
953
|
position: relative;
|
|
739
|
-
left: -50%;
|
|
740
|
-
}
|
|
741
|
-
/*renderTop有几个大节点时(3-9)*/
|
|
742
|
-
.flowmain .flowline2 {
|
|
743
|
-
float: left;
|
|
744
|
-
margin-top: 15px;
|
|
745
|
-
width: 30.8%;
|
|
746
|
-
height: 4px;
|
|
747
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
748
|
-
position: relative;
|
|
749
|
-
left: -50%;
|
|
750
|
-
}
|
|
751
|
-
.flowmain .flowline3 {
|
|
752
|
-
float: left;
|
|
753
|
-
margin-top: 15px;
|
|
754
|
-
width: 30.6%;
|
|
755
|
-
height: 4px;
|
|
756
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
757
|
-
position: relative;
|
|
758
|
-
left: -50%;
|
|
759
|
-
}
|
|
760
|
-
.flowmain .flowline4 {
|
|
761
|
-
float: left;
|
|
762
|
-
margin-top: 15px;
|
|
763
|
-
width: 19.8%;
|
|
764
|
-
height: 4px;
|
|
765
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
766
|
-
position: relative;
|
|
767
|
-
left: -50%;
|
|
768
|
-
}
|
|
769
|
-
.flowmain .flowline5 {
|
|
770
|
-
float: left;
|
|
771
|
-
margin-top: 15px;
|
|
772
|
-
width: 14.4%;
|
|
773
|
-
height: 4px;
|
|
774
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
775
|
-
position: relative;
|
|
776
|
-
left: -50%;
|
|
777
|
-
}
|
|
778
|
-
.flowmain .flowline6 {
|
|
779
|
-
float: left;
|
|
780
|
-
margin-top: 15px;
|
|
781
|
-
width: 11.2%;
|
|
782
|
-
height: 4px;
|
|
783
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
784
|
-
position: relative;
|
|
785
|
-
left: -50%;
|
|
786
954
|
}
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
margin-top: 15px;
|
|
790
|
-
width: 9.03%;
|
|
791
|
-
height: 4px;
|
|
792
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
793
|
-
position: relative;
|
|
794
|
-
left: -50%;
|
|
795
|
-
}
|
|
796
|
-
.flowmain .flowline8 {
|
|
797
|
-
float: left;
|
|
798
|
-
margin-top: 15px;
|
|
799
|
-
width: 7.4%;
|
|
800
|
-
height: 4px;
|
|
801
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
802
|
-
position: relative;
|
|
803
|
-
left: -50%;
|
|
804
|
-
}
|
|
805
|
-
.flowmain .flowline9 {
|
|
806
|
-
float: left;
|
|
807
|
-
margin-top: 15px;
|
|
808
|
-
width: 6.348%;
|
|
809
|
-
height: 4px;
|
|
810
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
811
|
-
position: relative;
|
|
812
|
-
left: -50%;
|
|
813
|
-
}
|
|
814
|
-
.flowmid {
|
|
815
|
-
height: 34px;
|
|
816
|
-
}
|
|
817
|
-
/*renderMid下的有几个flowtext(3-9)*/
|
|
818
|
-
.flowmid .flowtext2 {
|
|
819
|
-
width: 32.4%;
|
|
820
|
-
float: left;
|
|
821
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
822
|
-
position: relative;
|
|
823
|
-
left: -65.5%;
|
|
824
|
-
}
|
|
825
|
-
.flowmid .flowtext3 {
|
|
826
|
-
width: 32.4%;
|
|
827
|
-
float: left;
|
|
828
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
829
|
-
position: relative;
|
|
830
|
-
left: -65.5%;
|
|
831
|
-
}
|
|
832
|
-
.flowmid .flowtext4 {
|
|
833
|
-
width: 21.6%;
|
|
834
|
-
float: left;
|
|
835
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
836
|
-
position: relative;
|
|
837
|
-
left: -60%;
|
|
838
|
-
}
|
|
839
|
-
.flowmid .flowtext5 {
|
|
840
|
-
width: 16.2%;
|
|
841
|
-
float: left;
|
|
842
|
-
/*浮动区块居中,必须配合.float-center使用*/
|
|
843
|
-
position: relative;
|
|
844
|
-
left: -57.5%;
|
|
845
|
-
}
|
|
846
|
-
.flowmid .flowtext6 {
|
|
847
|
-
width: 13.1%;
|
|
955
|
+
/* 主节点活动节点样式*/
|
|
956
|
+
.flowmain .flowcircle-active-haierblue {
|
|
848
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;
|
|
849
965
|
/*浮动区块居中,必须配合.float-center使用*/
|
|
850
966
|
position: relative;
|
|
851
|
-
left: -56%;
|
|
852
967
|
}
|
|
853
|
-
.
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
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;
|
|
859
976
|
}
|
|
860
|
-
.
|
|
861
|
-
width: 9.13%;
|
|
977
|
+
.flowmain .flowcircle-active-haierorange {
|
|
862
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;
|
|
863
986
|
/*浮动区块居中,必须配合.float-center使用*/
|
|
864
987
|
position: relative;
|
|
865
|
-
left: -54%;
|
|
866
988
|
}
|
|
867
|
-
.
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
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;
|
|
873
997
|
}
|
|
998
|
+
/*renderTop有几个大节点时(3-9)*/
|
|
874
999
|
.flowmid .floawt1 {
|
|
875
1000
|
text-align: center;
|
|
876
1001
|
height: 24px;
|
|
877
1002
|
line-height: 32px;
|
|
878
1003
|
font-size: 14px;
|
|
879
1004
|
}
|
|
1005
|
+
.flowmid .floawt1detail {
|
|
1006
|
+
text-align: center;
|
|
1007
|
+
height: 24px;
|
|
1008
|
+
line-height: 18px;
|
|
1009
|
+
font-size: 14px;
|
|
1010
|
+
}
|
|
880
1011
|
.flowmid .floawt2 {
|
|
881
1012
|
text-align: center;
|
|
882
1013
|
height: 20px;
|
|
@@ -902,7 +1033,7 @@ s {
|
|
|
902
1033
|
.flowbottom .flowdoc {
|
|
903
1034
|
display: inline-block;
|
|
904
1035
|
margin: 0 2px;
|
|
905
|
-
height:
|
|
1036
|
+
height: 30px;
|
|
906
1037
|
text-align: center;
|
|
907
1038
|
/*浮动区块居中,必须配合.float-center使用*/
|
|
908
1039
|
position: relative;
|
|
@@ -1130,12 +1261,14 @@ s {
|
|
|
1130
1261
|
}
|
|
1131
1262
|
.flowmain .borderblue {
|
|
1132
1263
|
border: 1px solid #5867ad;
|
|
1264
|
+
border-radius: 4px;
|
|
1133
1265
|
}
|
|
1134
1266
|
.flowmain .borderorange {
|
|
1135
1267
|
border: 1px solid #ad7c59;
|
|
1136
1268
|
}
|
|
1137
1269
|
.flowmain .borderblueDashed {
|
|
1138
1270
|
border: 1px dashed #5867ad;
|
|
1271
|
+
border-radius: 4px;
|
|
1139
1272
|
}
|
|
1140
1273
|
.flowmain .borderorangeDashed {
|
|
1141
1274
|
border: 1px dashed #ad7c59;
|
|
@@ -1148,20 +1281,22 @@ s {
|
|
|
1148
1281
|
}
|
|
1149
1282
|
.flowmain .flowbottomtextblue {
|
|
1150
1283
|
text-align: center;
|
|
1151
|
-
line-height:
|
|
1284
|
+
line-height: 30px;
|
|
1152
1285
|
color: #5867ad;
|
|
1153
1286
|
}
|
|
1154
1287
|
.flowmain .flowdoc img {
|
|
1155
1288
|
display: inline-block;
|
|
1156
1289
|
position: absolute;
|
|
1157
|
-
right:
|
|
1158
|
-
bottom:
|
|
1290
|
+
right: -1px;
|
|
1291
|
+
bottom: -1px;
|
|
1159
1292
|
z-index: 1;
|
|
1160
1293
|
width: 21px;
|
|
1294
|
+
border-bottom-right-radius: 4px;
|
|
1161
1295
|
}
|
|
1162
1296
|
.flowmain .flowbottomtextorange {
|
|
1163
1297
|
text-align: center;
|
|
1164
|
-
line-height:
|
|
1298
|
+
line-height: 30px;
|
|
1299
|
+
border-radius: 4px;
|
|
1165
1300
|
}
|
|
1166
1301
|
.flowmain .flowbottomtextorange a {
|
|
1167
1302
|
color: #ad7c59;
|
|
@@ -1169,8 +1304,9 @@ s {
|
|
|
1169
1304
|
}
|
|
1170
1305
|
.flowmain .flowbottomtextgrey {
|
|
1171
1306
|
text-align: center;
|
|
1172
|
-
line-height:
|
|
1307
|
+
line-height: 30px;
|
|
1173
1308
|
color: #999999;
|
|
1309
|
+
border-radius: 4px;
|
|
1174
1310
|
}
|
|
1175
1311
|
.flowmain .flowbottomtextgrey a {
|
|
1176
1312
|
text-align: center;
|
|
@@ -1291,6 +1427,36 @@ s {
|
|
|
1291
1427
|
margin-left: -75px;
|
|
1292
1428
|
}
|
|
1293
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
|
+
}
|
|
1294
1460
|
.scrollY .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
1295
1461
|
text-align: center;
|
|
1296
1462
|
}
|
|
@@ -1307,9 +1473,6 @@ s {
|
|
|
1307
1473
|
white-space: nowrap;
|
|
1308
1474
|
overflow: hidden;
|
|
1309
1475
|
}
|
|
1310
|
-
.scrollY .ant-pagination-options-size-changer .ant-select-selector {
|
|
1311
|
-
width: 90px !important;
|
|
1312
|
-
}
|
|
1313
1476
|
.scrollY .ant-table-thead > tr > th {
|
|
1314
1477
|
text-align: center;
|
|
1315
1478
|
}
|
|
@@ -1318,8 +1481,33 @@ s {
|
|
|
1318
1481
|
white-space: nowrap;
|
|
1319
1482
|
text-align: center;
|
|
1320
1483
|
}
|
|
1321
|
-
.scrollX .ant-
|
|
1322
|
-
|
|
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;
|
|
1323
1511
|
}
|
|
1324
1512
|
.scrollX .ant-table-tbody > .ant-table-row td {
|
|
1325
1513
|
max-width: 240px;
|
|
@@ -1348,12 +1536,33 @@ s {
|
|
|
1348
1536
|
white-space: nowrap;
|
|
1349
1537
|
overflow: hidden;
|
|
1350
1538
|
}
|
|
1539
|
+
.scrollX .ant-spin-container {
|
|
1540
|
+
padding: 12px;
|
|
1541
|
+
}
|
|
1351
1542
|
.scrollPrint .ant-table-thead > tr > th {
|
|
1352
1543
|
text-align: center;
|
|
1353
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
|
+
}
|
|
1354
1563
|
.scrollPrint .ant-table-tbody > .ant-table-row td {
|
|
1355
1564
|
max-width: 240px;
|
|
1356
|
-
word-break:
|
|
1565
|
+
word-break: normal;
|
|
1357
1566
|
}
|
|
1358
1567
|
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText {
|
|
1359
1568
|
text-align: left;
|
|
@@ -1371,6 +1580,9 @@ s {
|
|
|
1371
1580
|
max-width: 240px;
|
|
1372
1581
|
text-align: left;
|
|
1373
1582
|
}
|
|
1583
|
+
.scrollPrint .ant-spin-container {
|
|
1584
|
+
padding: 12px;
|
|
1585
|
+
}
|
|
1374
1586
|
.butt {
|
|
1375
1587
|
background-color: #1890ff;
|
|
1376
1588
|
color: #fff;
|
|
@@ -1387,32 +1599,117 @@ s {
|
|
|
1387
1599
|
cursor: pointer;
|
|
1388
1600
|
}
|
|
1389
1601
|
.ant-upload-list-item {
|
|
1390
|
-
width: -webkit-max-content;
|
|
1391
1602
|
width: -moz-max-content;
|
|
1392
1603
|
width: max-content;
|
|
1393
1604
|
}
|
|
1394
1605
|
.ant-upload-list-item .ant-upload-list-item-info {
|
|
1395
|
-
width: -webkit-max-content;
|
|
1396
1606
|
width: -moz-max-content;
|
|
1397
1607
|
width: max-content;
|
|
1398
1608
|
}
|
|
1399
1609
|
.ant-upload-list-item .anticon-cross {
|
|
1400
1610
|
right: -2px;
|
|
1401
1611
|
}
|
|
1612
|
+
.e3wFormPageNoBorder {
|
|
1613
|
+
margin: 12px;
|
|
1614
|
+
}
|
|
1615
|
+
.e3wFormPageNoBorder > div > .ant-row {
|
|
1616
|
+
padding: 3px;
|
|
1617
|
+
}
|
|
1618
|
+
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
1619
|
+
height: 24px;
|
|
1620
|
+
color: #5468b2;
|
|
1621
|
+
}
|
|
1622
|
+
.e3wFormPageNoBorder .hasAfterBtns :global .ant-calendar-picker {
|
|
1623
|
+
min-width: 100% !important;
|
|
1624
|
+
}
|
|
1625
|
+
.e3wFormPage {
|
|
1626
|
+
border-top: 1px solid #e8e8e8;
|
|
1627
|
+
border-left: 1px solid #e8e8e8;
|
|
1628
|
+
border-right: 1px solid #e8e8e8;
|
|
1629
|
+
margin: 12px;
|
|
1630
|
+
}
|
|
1631
|
+
.e3wFormPage > div > .ant-row {
|
|
1632
|
+
padding: 3px;
|
|
1633
|
+
border-bottom: 1px solid #e8e8e8;
|
|
1634
|
+
}
|
|
1635
|
+
.e3wFormPage > div > .ant-row .ant-btn {
|
|
1636
|
+
height: 24px;
|
|
1637
|
+
color: #5468b2;
|
|
1638
|
+
}
|
|
1639
|
+
.e3wFormPage .hasAfterBtns :global .ant-calendar-picker {
|
|
1640
|
+
min-width: 100% !important;
|
|
1641
|
+
}
|
|
1402
1642
|
.e3wFormItem .ant-form-item {
|
|
1403
1643
|
margin-bottom: 8px;
|
|
1404
1644
|
}
|
|
1645
|
+
.formContent:not(:first-child) {
|
|
1646
|
+
padding-left: 3px;
|
|
1647
|
+
}
|
|
1648
|
+
.formContent :global .ant-input-group-wrapper {
|
|
1649
|
+
vertical-align: middle;
|
|
1650
|
+
}
|
|
1651
|
+
.formContent :global .ant-form-item-label {
|
|
1652
|
+
line-height: 24px;
|
|
1653
|
+
}
|
|
1654
|
+
.formContent :global .ant-form-item-control {
|
|
1655
|
+
line-height: 24px;
|
|
1656
|
+
}
|
|
1657
|
+
.formContent :global .ant-form-item-required::before {
|
|
1658
|
+
margin-left: -10px;
|
|
1659
|
+
}
|
|
1660
|
+
.formContent :global .ant-form-item-label {
|
|
1661
|
+
padding-left: 12px;
|
|
1662
|
+
}
|
|
1663
|
+
.formContentAlone:not(:first-child) {
|
|
1664
|
+
padding-left: 3px;
|
|
1665
|
+
}
|
|
1666
|
+
.formContentAlone:not(:first-child) {
|
|
1667
|
+
padding-left: 3px;
|
|
1668
|
+
}
|
|
1669
|
+
.formContentAlone :global .ant-input-group-wrapper {
|
|
1670
|
+
vertical-align: middle;
|
|
1671
|
+
}
|
|
1672
|
+
.formContentAlone :global .ant-form-item-label {
|
|
1673
|
+
line-height: 24px;
|
|
1674
|
+
}
|
|
1675
|
+
.formContentAlone :global .ant-form-item-control {
|
|
1676
|
+
line-height: 24px;
|
|
1677
|
+
}
|
|
1678
|
+
.formContentAlone :global .ant-form-item-required::before {
|
|
1679
|
+
margin-left: -10px;
|
|
1680
|
+
}
|
|
1681
|
+
.formContentAlone :global .ant-form-item-label {
|
|
1682
|
+
padding-left: 12px;
|
|
1683
|
+
}
|
|
1684
|
+
.formContentAlone :global .ant-input-number {
|
|
1685
|
+
border-radius: 4px 0 0 4px;
|
|
1686
|
+
}
|
|
1687
|
+
.formContentAlone :global .ant-form-item-required::before {
|
|
1688
|
+
margin-left: -10px;
|
|
1689
|
+
}
|
|
1690
|
+
.formContentAlone :global .ant-form-item-label {
|
|
1691
|
+
padding-left: 12px;
|
|
1692
|
+
}
|
|
1693
|
+
.countContent:after {
|
|
1694
|
+
content: attr(data-count);
|
|
1695
|
+
color: rgba(0, 0, 0, 0.45);
|
|
1696
|
+
pointer-events: none;
|
|
1697
|
+
float: right;
|
|
1698
|
+
white-space: nowrap;
|
|
1699
|
+
}
|
|
1405
1700
|
.e3wFootBtn {
|
|
1406
1701
|
margin: 0px 8px;
|
|
1407
1702
|
}
|
|
1703
|
+
.e3wFormBtn {
|
|
1704
|
+
margin-right: 8px;
|
|
1705
|
+
}
|
|
1408
1706
|
.positionDiv {
|
|
1409
1707
|
position: absolute;
|
|
1410
|
-
right:
|
|
1411
|
-
top:
|
|
1708
|
+
right: 12px;
|
|
1709
|
+
top: 10px;
|
|
1412
1710
|
}
|
|
1413
1711
|
.e3wPositionA {
|
|
1414
1712
|
font-size: 15px;
|
|
1415
|
-
color: #5468b2;
|
|
1416
1713
|
font-weight: 900;
|
|
1417
1714
|
margin-left: 15px;
|
|
1418
1715
|
}
|