easy3wui 1.5.89-beta4 → 1.5.89-beta5
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 +4 -0
- package/assets/index.css +4 -0
- package/lib/Easy3wQryGrid/index.js +9 -6
- package/package.json +1 -1
package/assets/formPage.css
CHANGED
package/assets/index.css
CHANGED
|
@@ -2600,6 +2600,10 @@
|
|
|
2600
2600
|
-ms-flex-direction: row;
|
|
2601
2601
|
flex-direction: row;
|
|
2602
2602
|
}
|
|
2603
|
+
.e3wQryGrid .ant-form-item-label > label::after {
|
|
2604
|
+
content: "";
|
|
2605
|
+
margin: 0px;
|
|
2606
|
+
}
|
|
2603
2607
|
input.ant-input-number-input {
|
|
2604
2608
|
text-align: right;
|
|
2605
2609
|
padding-right: 21px;
|
|
@@ -704,13 +704,16 @@ var Easy3wQryGrid = function (_Component) {
|
|
|
704
704
|
/** cascader end */
|
|
705
705
|
|
|
706
706
|
Easy3wQryGrid.prototype.render = function render() {
|
|
707
|
-
return
|
|
708
|
-
|
|
709
|
-
{ className: 'ant-advanced-search-form' },
|
|
707
|
+
return (
|
|
708
|
+
// <div className="ant-advanced-search-form">
|
|
710
709
|
_react2['default'].createElement(
|
|
711
|
-
|
|
712
|
-
{
|
|
713
|
-
|
|
710
|
+
'div',
|
|
711
|
+
{ className: (0, _classnames2['default'])(['e3wQryGrid']) },
|
|
712
|
+
_react2['default'].createElement(
|
|
713
|
+
_row2['default'],
|
|
714
|
+
{ gutter: 24 },
|
|
715
|
+
this.getFields()
|
|
716
|
+
)
|
|
714
717
|
)
|
|
715
718
|
);
|
|
716
719
|
};
|