Commit 8173f50e by 宋毅

修改接口

parent f36c9486
...@@ -82,8 +82,10 @@ class GatewaypushlogService extends ServiceBase { ...@@ -82,8 +82,10 @@ class GatewaypushlogService extends ServiceBase {
console.log("params..............................................", JSON.stringify(params)) console.log("params..............................................", JSON.stringify(params))
let doRes = await invokeObj[item.interface_method].apply(invokeObj, params); let doRes = await invokeObj[item.interface_method].apply(invokeObj, params);
console.log("newTaskHandle..............................................", JSON.stringify(doRes)) console.log("newTaskHandle..............................................", JSON.stringify(doRes))
item.pushStatus = "yts"; if (doRes.status == 0) {
this.update(item); item.pushStatus = "yts";
this.update(item);
}
return doRes; return doRes;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment