fmui-base 2.0.88 → 2.0.90
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 +2 -0
- package/lib/form/subForm.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/form/subForm.js
CHANGED
|
@@ -153,9 +153,11 @@ var PageHome = function (_React$Component) {
|
|
|
153
153
|
itemParam.itemType = itemType;
|
|
154
154
|
itemParam.uniqueName = form.uniqueName;
|
|
155
155
|
itemParam.isHidden = form.isHidden ? form.isHidden : false; //默认不隐藏
|
|
156
|
+
itemParam.parentTblName = form.parentTblName;
|
|
156
157
|
|
|
157
158
|
itemParam.children = form['children'];
|
|
158
159
|
itemParam.fieldControll = this.props.fieldControll;
|
|
160
|
+
|
|
159
161
|
//判断字段属性
|
|
160
162
|
var fieldControllJson = this.props.fieldControll;
|
|
161
163
|
var subtableReadonly = false;
|
|
@@ -216,6 +218,7 @@ var PageHome = function (_React$Component) {
|
|
|
216
218
|
}, {
|
|
217
219
|
key: 'dealwithSubForm',
|
|
218
220
|
value: function dealwithSubForm(subForm, itemParam, subTbl, relatedTbl) {
|
|
221
|
+
console.log("===dealwithSubForm===");
|
|
219
222
|
var subFormList = [];
|
|
220
223
|
var itemCode = itemParam.key;
|
|
221
224
|
var value = [];
|