fmui-base 2.2.68 → 2.2.69

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.69: 移动端异常处理
6
7
  - 2.2.68: 移动端合同管理移动端跳转
7
8
  - 2.2.67: 移动端合同管理移动端跳转
8
9
  - 2.2.66: 移动端关联字段为空报错
package/lib/form/table.js CHANGED
@@ -342,7 +342,11 @@ var PageHome = function (_React$Component) {
342
342
  // var subTblNo = data.subTblNo;
343
343
  //处理特有参数
344
344
  if (typeof FlowCommon.dealwithFormItemChange === "function") {
345
- FlowCommon.dealwithFormItemChange(itemParam, this);
345
+ try {
346
+ FlowCommon.dealwithFormItemChange(itemParam, this);
347
+ } catch (error) {
348
+ console.log("Error occurred while dealing with form item change:", error);
349
+ }
346
350
  }
347
351
  var mobileExt;
348
352
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.68",
3
+ "version": "2.2.69",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",