fmui-base 2.2.64 → 2.2.65

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 CHANGED
@@ -3,6 +3,7 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.2.65: 移动端关联字段报错
6
7
  - 2.2.64: 移动端提醒支持强制选中,移动端必提醒
7
8
  - 2.2.63: 再次发起回调参数
8
9
  - 2.2.62: 单选和多选支持选项后允许填空
package/lib/form/table.js CHANGED
@@ -759,7 +759,9 @@ var PageHome = function (_React$Component) {
759
759
  //关联字段
760
760
  if (formRelaFieldMaps) {
761
761
  var formRelaFieldMapsObj = formRelaFieldMaps[itemParam.uniqueName];
762
- t.dealwithRelaField(formRelaFieldMapsObj, data, itemParam);
762
+ if (formRelaFieldMapsObj && formRelaFieldMapsObj.length > 0) {
763
+ t.dealwithRelaField(formRelaFieldMapsObj, data, itemParam);
764
+ }
763
765
  }
764
766
  }
765
767
 
@@ -1090,7 +1092,7 @@ var PageHome = function (_React$Component) {
1090
1092
  }
1091
1093
  }
1092
1094
  }
1093
- if (isSubField) {} else {
1095
+ if (isSubField) {} else if (t.refs[relaFieldTblNameArrayItem]) {
1094
1096
 
1095
1097
  t.refs[relaFieldTblNameArrayItem].reloadItemParam([relaFieldMap]);
1096
1098
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.64",
3
+ "version": "2.2.65",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",