Commit ab580420 by 宋毅

tj

parent 87ced51b
...@@ -55,7 +55,7 @@ class TmOrderAPI extends APIBase { ...@@ -55,7 +55,7 @@ class TmOrderAPI extends APIBase {
if (opResult.status == 0) { if (opResult.status == 0) {
opResult.data = null; opResult.data = null;
var encryptResult = await this.toolSve.encryptStr(req.app, action_body.channelUserId); var encryptResult = await this.toolSve.encryptStr(req.app, action_body.channelUserId);
if (encryptResult.status && encryptResult.data && encryptResult.data != "undefined") { if (encryptResult.status == 0 && encryptResult.data && encryptResult.data != "undefined") {
opResult.data = encryptResult.data; opResult.data = encryptResult.data;
} }
} }
......
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