easy3wui 1.4.245 → 1.4.249

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/flow.css CHANGED
@@ -10,9 +10,194 @@
10
10
  width: 100%;
11
11
  background: #fff;
12
12
  }
13
- .floatcenter {
14
- position: relative;
15
- left: 67%;
13
+ .flowtop {
14
+ width: 100%;
15
+ }
16
+ .flowtop .floatcenter {
17
+ width: 90%;
18
+ margin: 0 auto;
19
+ /*
20
+ 公式: 线宽 (100% / n -22px) / 2
21
+ 思路:
22
+ 虚拟: 将每个节点 + 左侧线宽 + 右侧线宽看成一个块,所有块组合成整体top 虚拟的每个节点块长度都相等 除了首尾节点 其它节点的宽为: 100% / n
23
+ 实际:
24
+ 第一个节点: 左侧填充一个线宽 + 节点 + 右侧两个线 (100% / n -22px) / 2 * 3 + 22px 节点 + 3个线宽
25
+ 最后一个节点: 节点 + 右侧填充一个线宽 (100% / n -22px) / 2 + 22px 节点 + 1个线宽
26
+ 其它节点: 节点 + 右侧两个线 (100% / n -22px) / 2 * 2 + 22px 节点 + 2个线宽
27
+ 最终确保: 节点 + 填充 + 线 = top宽
28
+ 每个节点都有属于不与其它节点公用的两个线宽的长度
29
+ 构图: -o--o--o-
30
+ 流程节点:
31
+ 节点: 22px
32
+ 线宽: (100% / n -22px) / 2
33
+ */
34
+ }
35
+ .flowtop .floatcenter .renderTopTemp2:first-child {
36
+ width: calc((100% / 2 - 22px) / 2 * 3 + 22px);
37
+ padding-left: calc((100% / 2 - 22px) / 2);
38
+ }
39
+ .flowtop .floatcenter .renderTopTemp2 {
40
+ width: calc(100% / 2);
41
+ }
42
+ .flowtop .floatcenter .renderTopTemp2 .flowline2 {
43
+ float: left;
44
+ margin-top: 15px;
45
+ height: 4px;
46
+ width: calc((100% / 2 - 22px));
47
+ }
48
+ .flowtop .floatcenter .renderTopTemp2:last-child {
49
+ width: calc((100% / 2 - 22px) / 2 * 3 + 22px);
50
+ padding-right: calc((100% / 2 - 22px) / 2);
51
+ }
52
+ .flowtop .floatcenter .renderTopTemp3:first-child {
53
+ width: calc((100% / 3 - 22px) / 2 * 3 + 22px);
54
+ padding-left: calc((100% / 3 - 22px) / 2);
55
+ }
56
+ .flowtop .floatcenter .renderTopTemp3 {
57
+ width: calc(100% / 3);
58
+ }
59
+ .flowtop .floatcenter .renderTopTemp3 .flowline3 {
60
+ float: left;
61
+ margin-top: 15px;
62
+ height: 4px;
63
+ width: calc((100% / 3 - 22px));
64
+ }
65
+ .flowtop .floatcenter .renderTopTemp3:last-child {
66
+ width: calc((100% / 3 - 22px) / 2 * 3 + 22px);
67
+ padding-right: calc((100% / 3 - 22px) / 2);
68
+ }
69
+ .flowtop .floatcenter .renderTopTemp4:first-child {
70
+ width: calc((100% / 4 - 22px) / 2 * 3 + 22px);
71
+ padding-left: calc((100% / 4 - 22px) / 2);
72
+ }
73
+ .flowtop .floatcenter .renderTopTemp4 {
74
+ width: calc(100% / 4);
75
+ }
76
+ .flowtop .floatcenter .renderTopTemp4 .flowline4 {
77
+ float: left;
78
+ margin-top: 15px;
79
+ height: 4px;
80
+ width: calc((100% / 4 - 22px));
81
+ }
82
+ .flowtop .floatcenter .renderTopTemp4:last-child {
83
+ width: calc((100% / 4 - 22px) / 2 * 3 + 22px);
84
+ padding-right: calc((100% / 4 - 22px) / 2);
85
+ }
86
+ .flowtop .floatcenter .renderTopTemp5:first-child {
87
+ width: calc((100% / 5 - 22px) / 2 * 3 + 22px);
88
+ padding-left: calc((100% / 5 - 22px) / 2);
89
+ }
90
+ .flowtop .floatcenter .renderTopTemp5 {
91
+ width: calc(100% / 5);
92
+ }
93
+ .flowtop .floatcenter .renderTopTemp5 .flowline5 {
94
+ float: left;
95
+ margin-top: 15px;
96
+ height: 4px;
97
+ width: calc((100% / 5 - 22px));
98
+ }
99
+ .flowtop .floatcenter .renderTopTemp5:last-child {
100
+ width: calc((100% / 5 - 22px) / 2 * 3 + 22px);
101
+ padding-right: calc((100% / 5 - 22px) / 2);
102
+ }
103
+ .flowtop .floatcenter .renderTopTemp6:first-child {
104
+ width: calc((100% / 6 - 22px) / 2 * 3 + 22px);
105
+ padding-left: calc((100% / 6 - 22px) / 2);
106
+ }
107
+ .flowtop .floatcenter .renderTopTemp6 {
108
+ width: calc(100% / 6);
109
+ }
110
+ .flowtop .floatcenter .renderTopTemp6 .flowline6 {
111
+ float: left;
112
+ margin-top: 15px;
113
+ height: 4px;
114
+ width: calc((100% / 6 - 22px));
115
+ }
116
+ .flowtop .floatcenter .renderTopTemp6:last-child {
117
+ width: calc((100% / 6 - 22px) / 2 * 3 + 22px);
118
+ padding-right: calc((100% / 6 - 22px) / 2);
119
+ }
120
+ .flowtop .floatcenter .renderTopTemp7:first-child {
121
+ width: calc((100% / 7 - 22px) / 2 * 3 + 22px);
122
+ padding-left: calc((100% / 7 - 22px) / 2);
123
+ }
124
+ .flowtop .floatcenter .renderTopTemp7 {
125
+ width: calc(100% / 7);
126
+ }
127
+ .flowtop .floatcenter .renderTopTemp7 .flowline7 {
128
+ float: left;
129
+ margin-top: 15px;
130
+ height: 4px;
131
+ width: calc((100% / 7 - 22px));
132
+ }
133
+ .flowtop .floatcenter .renderTopTemp7:last-child {
134
+ width: calc((100% / 7 - 22px) / 2 * 3 + 22px);
135
+ padding-right: calc((100% / 7 - 22px) / 2);
136
+ }
137
+ .flowtop .floatcenter .renderTopTemp8:first-child {
138
+ width: calc((100% / 8 - 22px) / 2 * 3 + 22px);
139
+ padding-left: calc((100% / 8 - 22px) / 2);
140
+ }
141
+ .flowtop .floatcenter .renderTopTemp8 {
142
+ width: calc(100% / 8);
143
+ }
144
+ .flowtop .floatcenter .renderTopTemp8 .flowline8 {
145
+ float: left;
146
+ margin-top: 15px;
147
+ height: 4px;
148
+ width: calc((100% / 8 - 22px));
149
+ }
150
+ .flowtop .floatcenter .renderTopTemp8:last-child {
151
+ width: calc((100% / 8 - 22px) / 2 * 3 + 22px);
152
+ padding-right: calc((100% / 8 - 22px) / 2);
153
+ }
154
+ .flowtop .floatcenter .renderTopTemp9:first-child {
155
+ width: calc((100% / 9 - 22px) / 2 * 3 + 22px);
156
+ padding-left: calc((100% / 9 - 22px) / 2);
157
+ }
158
+ .flowtop .floatcenter .renderTopTemp9 {
159
+ width: calc(100% / 9);
160
+ }
161
+ .flowtop .floatcenter .renderTopTemp9 .flowline9 {
162
+ float: left;
163
+ margin-top: 15px;
164
+ height: 4px;
165
+ width: calc((100% / 9 - 22px));
166
+ }
167
+ .flowtop .floatcenter .renderTopTemp9:last-child {
168
+ width: calc((100% / 9 - 22px) / 2 * 3 + 22px);
169
+ padding-right: calc((100% / 9 - 22px) / 2);
170
+ }
171
+ .flowmid {
172
+ width: 100%;
173
+ }
174
+ .flowmid .floatcenter {
175
+ width: 90%;
176
+ margin: 0 auto;
177
+ }
178
+ .flowmid .floatcenter div.flowtext2 {
179
+ width: calc(100% / 2);
180
+ }
181
+ .flowmid .floatcenter div.flowtext3 {
182
+ width: calc(100% / 3);
183
+ }
184
+ .flowmid .floatcenter div.flowtext4 {
185
+ width: calc(100% / 4);
186
+ }
187
+ .flowmid .floatcenter div.flowtext5 {
188
+ width: calc(100% / 5);
189
+ }
190
+ .flowmid .floatcenter div.flowtext6 {
191
+ width: calc(100% / 6);
192
+ }
193
+ .flowmid .floatcenter div.flowtext7 {
194
+ width: calc(100% / 7);
195
+ }
196
+ .flowmid .floatcenter div.flowtext8 {
197
+ width: calc(100% / 8);
198
+ }
199
+ .flowmid .floatcenter div.flowtext9 {
200
+ width: calc(100% / 9);
16
201
  }
17
202
  .floatcenter2_1 {
18
203
  position: absolute;
@@ -352,138 +537,6 @@
352
537
  right: 0;
353
538
  }
354
539
  /*renderTop有几个大节点时(3-9)*/
355
- .flowmain .flowline2 {
356
- float: left;
357
- margin-top: 15px;
358
- width: 30.8%;
359
- height: 4px;
360
- /*浮动区块居中,必须配合.float-center使用*/
361
- position: relative;
362
- left: -50%;
363
- }
364
- .flowmain .flowline3 {
365
- float: left;
366
- margin-top: 15px;
367
- width: 30.6%;
368
- height: 4px;
369
- /*浮动区块居中,必须配合.float-center使用*/
370
- position: relative;
371
- left: -50%;
372
- }
373
- .flowmain .flowline4 {
374
- float: left;
375
- margin-top: 15px;
376
- width: 19.8%;
377
- height: 4px;
378
- /*浮动区块居中,必须配合.float-center使用*/
379
- position: relative;
380
- left: -50%;
381
- }
382
- .flowmain .flowline5 {
383
- float: left;
384
- margin-top: 15px;
385
- width: 14.4%;
386
- height: 4px;
387
- /*浮动区块居中,必须配合.float-center使用*/
388
- position: relative;
389
- left: -50%;
390
- }
391
- .flowmain .flowline6 {
392
- float: left;
393
- margin-top: 15px;
394
- width: 11.2%;
395
- height: 4px;
396
- /*浮动区块居中,必须配合.float-center使用*/
397
- position: relative;
398
- left: -50%;
399
- }
400
- .flowmain .flowline7 {
401
- float: left;
402
- margin-top: 15px;
403
- width: 9.03%;
404
- height: 4px;
405
- /*浮动区块居中,必须配合.float-center使用*/
406
- position: relative;
407
- left: -50%;
408
- }
409
- .flowmain .flowline8 {
410
- float: left;
411
- margin-top: 15px;
412
- width: 7.4%;
413
- height: 4px;
414
- /*浮动区块居中,必须配合.float-center使用*/
415
- position: relative;
416
- left: -50%;
417
- }
418
- .flowmain .flowline9 {
419
- float: left;
420
- margin-top: 15px;
421
- width: 6.348%;
422
- height: 4px;
423
- /*浮动区块居中,必须配合.float-center使用*/
424
- position: relative;
425
- left: -50%;
426
- }
427
- .flowmid {
428
- height: 34px;
429
- }
430
- /*renderMid下的有几个flowtext(3-9)*/
431
- .flowmid .flowtext2 {
432
- width: 32.4%;
433
- float: left;
434
- /*浮动区块居中,必须配合.float-center使用*/
435
- position: relative;
436
- left: -65.5%;
437
- }
438
- .flowmid .flowtext3 {
439
- width: 32.4%;
440
- float: left;
441
- /*浮动区块居中,必须配合.float-center使用*/
442
- position: relative;
443
- left: -65.5%;
444
- }
445
- .flowmid .flowtext4 {
446
- width: 21.6%;
447
- float: left;
448
- /*浮动区块居中,必须配合.float-center使用*/
449
- position: relative;
450
- left: -60%;
451
- }
452
- .flowmid .flowtext5 {
453
- width: 16.2%;
454
- float: left;
455
- /*浮动区块居中,必须配合.float-center使用*/
456
- position: relative;
457
- left: -57.5%;
458
- }
459
- .flowmid .flowtext6 {
460
- width: 13.1%;
461
- float: left;
462
- /*浮动区块居中,必须配合.float-center使用*/
463
- position: relative;
464
- left: -56%;
465
- }
466
- .flowmid .flowtext7 {
467
- width: 10.8%;
468
- float: left;
469
- /*浮动区块居中,必须配合.float-center使用*/
470
- position: relative;
471
- left: -54.8%;
472
- }
473
- .flowmid .flowtext8 {
474
- width: 9.13%;
475
- float: left;
476
- /*浮动区块居中,必须配合.float-center使用*/
477
- position: relative;
478
- left: -54%;
479
- }
480
- .flowmid .flowtext9 {
481
- width: 8%;
482
- float: left;
483
- /*浮动区块居中,必须配合.float-center使用*/
484
- position: relative;
485
- left: -53%;
486
- }
487
540
  .flowmid .floawt1 {
488
541
  text-align: center;
489
542
  height: 24px;
@@ -34,6 +34,9 @@
34
34
  .e3wFormItem .ant-form-item {
35
35
  margin-bottom: 8px;
36
36
  }
37
+ .formContent:not(:first-child) {
38
+ padding-left: 3px;
39
+ }
37
40
  .formContent :global .ant-input-group-wrapper {
38
41
  vertical-align: middle;
39
42
  }
@@ -49,6 +52,12 @@
49
52
  .formContent :global .ant-form-item-label {
50
53
  padding-left: 12px;
51
54
  }
55
+ .formContentAlone:not(:first-child) {
56
+ padding-left: 3px;
57
+ }
58
+ .formContentAlone:not(:first-child) {
59
+ padding-left: 3px;
60
+ }
52
61
  .formContentAlone :global .ant-input-group-wrapper {
53
62
  vertical-align: middle;
54
63
  }
package/assets/index.css CHANGED
@@ -455,9 +455,194 @@ s {
455
455
  width: 100%;
456
456
  background: #fff;
457
457
  }
458
- .floatcenter {
459
- position: relative;
460
- 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
+ }
487
+ .flowtop .floatcenter .renderTopTemp2 .flowline2 {
488
+ float: left;
489
+ margin-top: 15px;
490
+ height: 4px;
491
+ width: calc((100% / 2 - 22px));
492
+ }
493
+ .flowtop .floatcenter .renderTopTemp2:last-child {
494
+ width: calc((100% / 2 - 22px) / 2 * 3 + 22px);
495
+ padding-right: calc((100% / 2 - 22px) / 2);
496
+ }
497
+ .flowtop .floatcenter .renderTopTemp3:first-child {
498
+ width: calc((100% / 3 - 22px) / 2 * 3 + 22px);
499
+ padding-left: calc((100% / 3 - 22px) / 2);
500
+ }
501
+ .flowtop .floatcenter .renderTopTemp3 {
502
+ width: calc(100% / 3);
503
+ }
504
+ .flowtop .floatcenter .renderTopTemp3 .flowline3 {
505
+ float: left;
506
+ margin-top: 15px;
507
+ height: 4px;
508
+ width: calc((100% / 3 - 22px));
509
+ }
510
+ .flowtop .floatcenter .renderTopTemp3:last-child {
511
+ width: calc((100% / 3 - 22px) / 2 * 3 + 22px);
512
+ padding-right: calc((100% / 3 - 22px) / 2);
513
+ }
514
+ .flowtop .floatcenter .renderTopTemp4:first-child {
515
+ width: calc((100% / 4 - 22px) / 2 * 3 + 22px);
516
+ padding-left: calc((100% / 4 - 22px) / 2);
517
+ }
518
+ .flowtop .floatcenter .renderTopTemp4 {
519
+ width: calc(100% / 4);
520
+ }
521
+ .flowtop .floatcenter .renderTopTemp4 .flowline4 {
522
+ float: left;
523
+ margin-top: 15px;
524
+ height: 4px;
525
+ width: calc((100% / 4 - 22px));
526
+ }
527
+ .flowtop .floatcenter .renderTopTemp4:last-child {
528
+ width: calc((100% / 4 - 22px) / 2 * 3 + 22px);
529
+ padding-right: calc((100% / 4 - 22px) / 2);
530
+ }
531
+ .flowtop .floatcenter .renderTopTemp5:first-child {
532
+ width: calc((100% / 5 - 22px) / 2 * 3 + 22px);
533
+ padding-left: calc((100% / 5 - 22px) / 2);
534
+ }
535
+ .flowtop .floatcenter .renderTopTemp5 {
536
+ width: calc(100% / 5);
537
+ }
538
+ .flowtop .floatcenter .renderTopTemp5 .flowline5 {
539
+ float: left;
540
+ margin-top: 15px;
541
+ height: 4px;
542
+ width: calc((100% / 5 - 22px));
543
+ }
544
+ .flowtop .floatcenter .renderTopTemp5:last-child {
545
+ width: calc((100% / 5 - 22px) / 2 * 3 + 22px);
546
+ padding-right: calc((100% / 5 - 22px) / 2);
547
+ }
548
+ .flowtop .floatcenter .renderTopTemp6:first-child {
549
+ width: calc((100% / 6 - 22px) / 2 * 3 + 22px);
550
+ padding-left: calc((100% / 6 - 22px) / 2);
551
+ }
552
+ .flowtop .floatcenter .renderTopTemp6 {
553
+ width: calc(100% / 6);
554
+ }
555
+ .flowtop .floatcenter .renderTopTemp6 .flowline6 {
556
+ float: left;
557
+ margin-top: 15px;
558
+ height: 4px;
559
+ width: calc((100% / 6 - 22px));
560
+ }
561
+ .flowtop .floatcenter .renderTopTemp6:last-child {
562
+ width: calc((100% / 6 - 22px) / 2 * 3 + 22px);
563
+ padding-right: calc((100% / 6 - 22px) / 2);
564
+ }
565
+ .flowtop .floatcenter .renderTopTemp7:first-child {
566
+ width: calc((100% / 7 - 22px) / 2 * 3 + 22px);
567
+ padding-left: calc((100% / 7 - 22px) / 2);
568
+ }
569
+ .flowtop .floatcenter .renderTopTemp7 {
570
+ width: calc(100% / 7);
571
+ }
572
+ .flowtop .floatcenter .renderTopTemp7 .flowline7 {
573
+ float: left;
574
+ margin-top: 15px;
575
+ height: 4px;
576
+ width: calc((100% / 7 - 22px));
577
+ }
578
+ .flowtop .floatcenter .renderTopTemp7:last-child {
579
+ width: calc((100% / 7 - 22px) / 2 * 3 + 22px);
580
+ padding-right: calc((100% / 7 - 22px) / 2);
581
+ }
582
+ .flowtop .floatcenter .renderTopTemp8:first-child {
583
+ width: calc((100% / 8 - 22px) / 2 * 3 + 22px);
584
+ padding-left: calc((100% / 8 - 22px) / 2);
585
+ }
586
+ .flowtop .floatcenter .renderTopTemp8 {
587
+ width: calc(100% / 8);
588
+ }
589
+ .flowtop .floatcenter .renderTopTemp8 .flowline8 {
590
+ float: left;
591
+ margin-top: 15px;
592
+ height: 4px;
593
+ width: calc((100% / 8 - 22px));
594
+ }
595
+ .flowtop .floatcenter .renderTopTemp8:last-child {
596
+ width: calc((100% / 8 - 22px) / 2 * 3 + 22px);
597
+ padding-right: calc((100% / 8 - 22px) / 2);
598
+ }
599
+ .flowtop .floatcenter .renderTopTemp9:first-child {
600
+ width: calc((100% / 9 - 22px) / 2 * 3 + 22px);
601
+ padding-left: calc((100% / 9 - 22px) / 2);
602
+ }
603
+ .flowtop .floatcenter .renderTopTemp9 {
604
+ width: calc(100% / 9);
605
+ }
606
+ .flowtop .floatcenter .renderTopTemp9 .flowline9 {
607
+ float: left;
608
+ margin-top: 15px;
609
+ height: 4px;
610
+ width: calc((100% / 9 - 22px));
611
+ }
612
+ .flowtop .floatcenter .renderTopTemp9:last-child {
613
+ width: calc((100% / 9 - 22px) / 2 * 3 + 22px);
614
+ padding-right: calc((100% / 9 - 22px) / 2);
615
+ }
616
+ .flowmid {
617
+ width: 100%;
618
+ }
619
+ .flowmid .floatcenter {
620
+ width: 90%;
621
+ margin: 0 auto;
622
+ }
623
+ .flowmid .floatcenter div.flowtext2 {
624
+ width: calc(100% / 2);
625
+ }
626
+ .flowmid .floatcenter div.flowtext3 {
627
+ width: calc(100% / 3);
628
+ }
629
+ .flowmid .floatcenter div.flowtext4 {
630
+ width: calc(100% / 4);
631
+ }
632
+ .flowmid .floatcenter div.flowtext5 {
633
+ width: calc(100% / 5);
634
+ }
635
+ .flowmid .floatcenter div.flowtext6 {
636
+ width: calc(100% / 6);
637
+ }
638
+ .flowmid .floatcenter div.flowtext7 {
639
+ width: calc(100% / 7);
640
+ }
641
+ .flowmid .floatcenter div.flowtext8 {
642
+ width: calc(100% / 8);
643
+ }
644
+ .flowmid .floatcenter div.flowtext9 {
645
+ width: calc(100% / 9);
461
646
  }
462
647
  .floatcenter2_1 {
463
648
  position: absolute;
@@ -797,138 +982,6 @@ s {
797
982
  right: 0;
798
983
  }
799
984
  /*renderTop有几个大节点时(3-9)*/
800
- .flowmain .flowline2 {
801
- float: left;
802
- margin-top: 15px;
803
- width: 30.8%;
804
- height: 4px;
805
- /*浮动区块居中,必须配合.float-center使用*/
806
- position: relative;
807
- left: -50%;
808
- }
809
- .flowmain .flowline3 {
810
- float: left;
811
- margin-top: 15px;
812
- width: 30.6%;
813
- height: 4px;
814
- /*浮动区块居中,必须配合.float-center使用*/
815
- position: relative;
816
- left: -50%;
817
- }
818
- .flowmain .flowline4 {
819
- float: left;
820
- margin-top: 15px;
821
- width: 19.8%;
822
- height: 4px;
823
- /*浮动区块居中,必须配合.float-center使用*/
824
- position: relative;
825
- left: -50%;
826
- }
827
- .flowmain .flowline5 {
828
- float: left;
829
- margin-top: 15px;
830
- width: 14.4%;
831
- height: 4px;
832
- /*浮动区块居中,必须配合.float-center使用*/
833
- position: relative;
834
- left: -50%;
835
- }
836
- .flowmain .flowline6 {
837
- float: left;
838
- margin-top: 15px;
839
- width: 11.2%;
840
- height: 4px;
841
- /*浮动区块居中,必须配合.float-center使用*/
842
- position: relative;
843
- left: -50%;
844
- }
845
- .flowmain .flowline7 {
846
- float: left;
847
- margin-top: 15px;
848
- width: 9.03%;
849
- height: 4px;
850
- /*浮动区块居中,必须配合.float-center使用*/
851
- position: relative;
852
- left: -50%;
853
- }
854
- .flowmain .flowline8 {
855
- float: left;
856
- margin-top: 15px;
857
- width: 7.4%;
858
- height: 4px;
859
- /*浮动区块居中,必须配合.float-center使用*/
860
- position: relative;
861
- left: -50%;
862
- }
863
- .flowmain .flowline9 {
864
- float: left;
865
- margin-top: 15px;
866
- width: 6.348%;
867
- height: 4px;
868
- /*浮动区块居中,必须配合.float-center使用*/
869
- position: relative;
870
- left: -50%;
871
- }
872
- .flowmid {
873
- height: 34px;
874
- }
875
- /*renderMid下的有几个flowtext(3-9)*/
876
- .flowmid .flowtext2 {
877
- width: 32.4%;
878
- float: left;
879
- /*浮动区块居中,必须配合.float-center使用*/
880
- position: relative;
881
- left: -65.5%;
882
- }
883
- .flowmid .flowtext3 {
884
- width: 32.4%;
885
- float: left;
886
- /*浮动区块居中,必须配合.float-center使用*/
887
- position: relative;
888
- left: -65.5%;
889
- }
890
- .flowmid .flowtext4 {
891
- width: 21.6%;
892
- float: left;
893
- /*浮动区块居中,必须配合.float-center使用*/
894
- position: relative;
895
- left: -60%;
896
- }
897
- .flowmid .flowtext5 {
898
- width: 16.2%;
899
- float: left;
900
- /*浮动区块居中,必须配合.float-center使用*/
901
- position: relative;
902
- left: -57.5%;
903
- }
904
- .flowmid .flowtext6 {
905
- width: 13.1%;
906
- float: left;
907
- /*浮动区块居中,必须配合.float-center使用*/
908
- position: relative;
909
- left: -56%;
910
- }
911
- .flowmid .flowtext7 {
912
- width: 10.8%;
913
- float: left;
914
- /*浮动区块居中,必须配合.float-center使用*/
915
- position: relative;
916
- left: -54.8%;
917
- }
918
- .flowmid .flowtext8 {
919
- width: 9.13%;
920
- float: left;
921
- /*浮动区块居中,必须配合.float-center使用*/
922
- position: relative;
923
- left: -54%;
924
- }
925
- .flowmid .flowtext9 {
926
- width: 8%;
927
- float: left;
928
- /*浮动区块居中,必须配合.float-center使用*/
929
- position: relative;
930
- left: -53%;
931
- }
932
985
  .flowmid .floawt1 {
933
986
  text-align: center;
934
987
  height: 24px;
@@ -1567,6 +1620,9 @@ s {
1567
1620
  .e3wFormItem .ant-form-item {
1568
1621
  margin-bottom: 8px;
1569
1622
  }
1623
+ .formContent:not(:first-child) {
1624
+ padding-left: 3px;
1625
+ }
1570
1626
  .formContent :global .ant-input-group-wrapper {
1571
1627
  vertical-align: middle;
1572
1628
  }
@@ -1582,6 +1638,12 @@ s {
1582
1638
  .formContent :global .ant-form-item-label {
1583
1639
  padding-left: 12px;
1584
1640
  }
1641
+ .formContentAlone:not(:first-child) {
1642
+ padding-left: 3px;
1643
+ }
1644
+ .formContentAlone:not(:first-child) {
1645
+ padding-left: 3px;
1646
+ }
1585
1647
  .formContentAlone :global .ant-input-group-wrapper {
1586
1648
  vertical-align: middle;
1587
1649
  }
@@ -148,7 +148,7 @@ var Easy3wFlow = function (_Component) {
148
148
  }
149
149
  return _react2['default'].createElement(
150
150
  'div',
151
- null,
151
+ { className: (0, _classnames2['default'])('renderTopTemp' + flowData.length) },
152
152
  _react2['default'].createElement(
153
153
  'div',
154
154
  { className:
@@ -1279,6 +1279,10 @@ var Easy3wFormPage = function (_Component) {
1279
1279
  value = item.value;
1280
1280
  var cmptPros = item.cmptPros;
1281
1281
 
1282
+ var cmptProsNew = cmptPros || {};
1283
+ cmptPros = (0, _extends3['default'])({}, cmptPros, {
1284
+ rows: cmptProsNew.rows || 2
1285
+ });
1282
1286
  var maxlength = void 0;
1283
1287
  if (!cmptPros || cmptPros && !cmptPros.rows) {
1284
1288
  cmptPros = (0, _extends3['default'])({}, cmptPros, { autosize: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy3wui",
3
- "version": "1.4.245",
3
+ "version": "1.4.249",
4
4
  "description": "easy3wui components for react",
5
5
  "keywords": [
6
6
  "react",