easy3wui 1.4.242 → 1.4.243
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/formPage.css +5 -2
- package/assets/index.css +5 -2
- package/lib/Easy3wFormPage/index.js +3 -3
- package/package.json +1 -1
package/assets/formPage.css
CHANGED
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
margin: 12px;
|
|
14
14
|
}
|
|
15
15
|
.e3wFormPageNoBorder > div > .ant-row {
|
|
16
|
-
|
|
16
|
+
padding: 3px;
|
|
17
|
+
}
|
|
18
|
+
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
19
|
+
height: 24px;
|
|
17
20
|
}
|
|
18
21
|
.e3wFormPage {
|
|
19
22
|
border-top: 1px solid #e8e8e8;
|
|
@@ -22,7 +25,7 @@
|
|
|
22
25
|
margin: 12px;
|
|
23
26
|
}
|
|
24
27
|
.e3wFormPage > div > .ant-row {
|
|
25
|
-
|
|
28
|
+
padding: 3px;
|
|
26
29
|
border-bottom: 1px solid #e8e8e8;
|
|
27
30
|
}
|
|
28
31
|
.e3wFormPage > div > .ant-row .ant-btn {
|
package/assets/index.css
CHANGED
|
@@ -1546,7 +1546,10 @@ s {
|
|
|
1546
1546
|
margin: 12px;
|
|
1547
1547
|
}
|
|
1548
1548
|
.e3wFormPageNoBorder > div > .ant-row {
|
|
1549
|
-
|
|
1549
|
+
padding: 3px;
|
|
1550
|
+
}
|
|
1551
|
+
.e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
1552
|
+
height: 24px;
|
|
1550
1553
|
}
|
|
1551
1554
|
.e3wFormPage {
|
|
1552
1555
|
border-top: 1px solid #e8e8e8;
|
|
@@ -1555,7 +1558,7 @@ s {
|
|
|
1555
1558
|
margin: 12px;
|
|
1556
1559
|
}
|
|
1557
1560
|
.e3wFormPage > div > .ant-row {
|
|
1558
|
-
|
|
1561
|
+
padding: 3px;
|
|
1559
1562
|
border-bottom: 1px solid #e8e8e8;
|
|
1560
1563
|
}
|
|
1561
1564
|
.e3wFormPage > div > .ant-row .ant-btn {
|
|
@@ -223,7 +223,7 @@ var singleItem = {
|
|
|
223
223
|
};
|
|
224
224
|
var mixSingle = {
|
|
225
225
|
labelCol: { span: 4 },
|
|
226
|
-
wrapperCol: { span:
|
|
226
|
+
wrapperCol: { span: 20 }
|
|
227
227
|
};
|
|
228
228
|
var mixSingleWithBtn = {
|
|
229
229
|
labelCol: { span: 4 },
|
|
@@ -830,9 +830,9 @@ var Easy3wFormPage = function (_Component) {
|
|
|
830
830
|
}
|
|
831
831
|
if (mixColFlag) {
|
|
832
832
|
if (colsLength === 1) {
|
|
833
|
-
col1Layout =
|
|
833
|
+
col1Layout = mixSingle;
|
|
834
834
|
if (rowAftBtnFlag) {
|
|
835
|
-
col1Layout =
|
|
835
|
+
col1Layout = mixSingleWithBtn;
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
838
|
if (colsLength === 2) {
|