fmui-base 2.1.49 → 2.1.50
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/process_info/processInfo.js +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4077,6 +4077,8 @@ var PageHome = function (_React$Component) {
|
|
|
4077
4077
|
//操作回调
|
|
4078
4078
|
if (content.isStart == '1' && typeof FlowCommon.operateCallBack === "function") {
|
|
4079
4079
|
FlowCommon.operateCallBack({ type: 0, dataId: dataId, isBatch: 0 }, t.state);
|
|
4080
|
+
} else if (typeof FlowCommon.operateCallBack === "function") {
|
|
4081
|
+
FlowCommon.operateCallBack({ type: 8, dataId: dataId, isBatch: 0 }, t.state);
|
|
4080
4082
|
}
|
|
4081
4083
|
//项目开发扩展
|
|
4082
4084
|
var mobileExt;
|
|
@@ -4087,8 +4089,10 @@ var PageHome = function (_React$Component) {
|
|
|
4087
4089
|
} catch (e) {
|
|
4088
4090
|
// alert("exception: "+e.message);
|
|
4089
4091
|
}
|
|
4090
|
-
if (typeof mobileExt !== 'undefined' && typeof mobileExt["operateCallBack"] === "function") {
|
|
4092
|
+
if (content.isStart == '1' && typeof mobileExt !== 'undefined' && typeof mobileExt["operateCallBack"] === "function") {
|
|
4091
4093
|
mobileExt["operateCallBack"]({ type: 0, dataId: dataId, isBatch: 0 }, t.state);
|
|
4094
|
+
} else if (typeof FlowCommon.operateCallBack === "function") {
|
|
4095
|
+
FlowCommon.operateCallBack({ type: 8, dataId: dataId, isBatch: 0 }, t.state);
|
|
4092
4096
|
}
|
|
4093
4097
|
|
|
4094
4098
|
if (isPush == '1') {
|