easy3wui 1.5.88-beta2 → 1.5.88-beta4
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/btn.css +1 -1
- package/assets/card.css +3 -13
- package/assets/index.css +4 -14
- package/lib/Easy3wFormPage/indexPC.js +10 -4
- package/package.json +1 -1
package/assets/btn.css
CHANGED
package/assets/card.css
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
.e3wCardSpanCardTitle {
|
|
2
|
-
font-weight: 600;
|
|
3
|
-
}
|
|
4
1
|
:global .ant-table-thead > tr > th,
|
|
5
2
|
:global .ant-table table {
|
|
6
3
|
text-align: center;
|
|
@@ -15,17 +12,10 @@
|
|
|
15
12
|
:global .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
16
13
|
background: #fafafa;
|
|
17
14
|
}
|
|
18
|
-
.e3wCardForm .
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
.e3wCardForm .ftbtn_Sel {
|
|
22
|
-
text-align: center;
|
|
23
|
-
margin-bottom: 16px;
|
|
24
|
-
}
|
|
25
|
-
.e3wCardForm .formes {
|
|
26
|
-
float: left;
|
|
15
|
+
.e3wCardForm .e3wCardSpanCardTitle {
|
|
16
|
+
font-weight: 600;
|
|
27
17
|
}
|
|
28
|
-
s {
|
|
18
|
+
.e3wCardForm s {
|
|
29
19
|
display: inline-block;
|
|
30
20
|
width: 3px;
|
|
31
21
|
height: 20px;
|
package/assets/index.css
CHANGED
|
@@ -61,9 +61,6 @@
|
|
|
61
61
|
float: right;
|
|
62
62
|
margin-right: 12px;
|
|
63
63
|
}
|
|
64
|
-
.e3wCardSpanCardTitle {
|
|
65
|
-
font-weight: 600;
|
|
66
|
-
}
|
|
67
64
|
:global .ant-table-thead > tr > th,
|
|
68
65
|
:global .ant-table table {
|
|
69
66
|
text-align: center;
|
|
@@ -78,17 +75,10 @@
|
|
|
78
75
|
:global .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
|
|
79
76
|
background: #fafafa;
|
|
80
77
|
}
|
|
81
|
-
.e3wCardForm .
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
.e3wCardForm .ftbtn_Sel {
|
|
85
|
-
text-align: center;
|
|
86
|
-
margin-bottom: 16px;
|
|
87
|
-
}
|
|
88
|
-
.e3wCardForm .formes {
|
|
89
|
-
float: left;
|
|
78
|
+
.e3wCardForm .e3wCardSpanCardTitle {
|
|
79
|
+
font-weight: 600;
|
|
90
80
|
}
|
|
91
|
-
s {
|
|
81
|
+
.e3wCardForm s {
|
|
92
82
|
display: inline-block;
|
|
93
83
|
width: 3px;
|
|
94
84
|
height: 20px;
|
|
@@ -2641,7 +2631,7 @@ input.ant-input-number-input {
|
|
|
2641
2631
|
.positionDiv {
|
|
2642
2632
|
position: absolute;
|
|
2643
2633
|
right: 32px;
|
|
2644
|
-
top: 16px;
|
|
2634
|
+
top: var(--card-head-padding, 16px);
|
|
2645
2635
|
}
|
|
2646
2636
|
.e3wPositionA {
|
|
2647
2637
|
font-size: 15px;
|
|
@@ -299,7 +299,9 @@ var formItemRightWithBtn = {
|
|
|
299
299
|
wrapperCol: { span: 12 }
|
|
300
300
|
};
|
|
301
301
|
var formItemStyle = {
|
|
302
|
-
marginBottom: 6
|
|
302
|
+
marginBottom: 6,
|
|
303
|
+
display: 'flex',
|
|
304
|
+
flexDirection: 'row'
|
|
303
305
|
};
|
|
304
306
|
var formItemStyleTight = {
|
|
305
307
|
margin: '0px'
|
|
@@ -2207,9 +2209,13 @@ var Easy3wFormPagePC = exports.Easy3wFormPagePC = function (_Component) {
|
|
|
2207
2209
|
return itemArea;
|
|
2208
2210
|
});
|
|
2209
2211
|
var retObj = _react2['default'].createElement(
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2212
|
+
'div',
|
|
2213
|
+
{ className: (0, _classnames2['default'])(['e3wFormStrTemplate']) },
|
|
2214
|
+
_react2['default'].createElement(
|
|
2215
|
+
_row2['default'],
|
|
2216
|
+
null,
|
|
2217
|
+
templateArr
|
|
2218
|
+
)
|
|
2213
2219
|
);
|
|
2214
2220
|
return retObj;
|
|
2215
2221
|
}, _this.descHandler = function (item) {
|