Commit 8eeb840e by Sxy

fix: refquery返回值

parent bfbcb788
......@@ -21,7 +21,7 @@ class logCtl extends CtlBase {
messageBody = messageBody ? JSON.parse(messageBody) : {}
resultInfo = resultInfo ? JSON.parse(resultInfo) : {}
let status;
if (resultInfo && resultInfo.status === 0) {
if (resultInfo && (resultInfo.status === 0 || !resultInfo.status)) {
status = "SUCCESS"
} else {
status = "FAIL"
......
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