fmui-base 2.0.9 → 2.0.10
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 +1 -0
- package/lib/form/subForm.js +5 -9
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/form/subForm.js
CHANGED
|
@@ -767,16 +767,12 @@ var PageHome = function (_React$Component) {
|
|
|
767
767
|
),
|
|
768
768
|
_react2.default.createElement(
|
|
769
769
|
'div',
|
|
770
|
-
{ onClick: this.detailAdd.bind(this), className: t.state.itemParam.subtableReadonly ? 't-DN' : '' },
|
|
770
|
+
{ onClick: this.detailAdd.bind(this), className: t.state.itemParam.subtableReadonly ? 't-DN' : 't-button t-button-size-medium t-FCblue' },
|
|
771
|
+
_react2.default.createElement('i', { className: 'iconfont icon-plus' }),
|
|
771
772
|
_react2.default.createElement(
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
_react2.default.createElement(
|
|
776
|
-
'span',
|
|
777
|
-
null,
|
|
778
|
-
this.state.itemParam.detailAction
|
|
779
|
-
)
|
|
773
|
+
'span',
|
|
774
|
+
null,
|
|
775
|
+
this.state.itemParam.detailAction
|
|
780
776
|
)
|
|
781
777
|
),
|
|
782
778
|
_react2.default.createElement('div', { className: 't-BCf7 t-H10' })
|