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 +1 -0
- package/lib/form/table.js +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
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
|
-
|
|
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 {
|