Commit 5fe66d5f by 王悦

fix推送管理查询

parent 3b101b11
...@@ -14,14 +14,15 @@ class PushCtl extends CtlBase { ...@@ -14,14 +14,15 @@ class PushCtl extends CtlBase {
pageSize: pobj.pageInfo.pageSize, pageSize: pobj.pageInfo.pageSize,
pageIndex: pobj.pageInfo.pageNo pageIndex: pobj.pageInfo.pageNo
}; };
if (pobj.messageBody) let search = pobj.search;
query.messageBody = pobj.messageBody; if (search.messageBody)
query.messageBody = search.messageBody;
if (pobj.identify_code) if (search.identify_code)
query.identifyCode = pobj.identify_code; query.identifyCode = search.identify_code;
if (pobj.request_id) if (search.request_id)
query.requestIdInfo = pobj.request_id; query.requestIdInfo = search.request_id;
let actionType; let actionType;
switch (pobj.bizpath) { switch (pobj.bizpath) {
......
...@@ -55,7 +55,7 @@ var settings = { ...@@ -55,7 +55,7 @@ var settings = {
}, },
pushUrl: function () { pushUrl: function () {
if (this.env == "localhost") { if (this.env == "localhost") {
return "http://192.168.1.128:4018/api/queueAction/producer/springBoard"; return "http://192.168.18.101:4018/api/queueAction/producer/springBoard";
} else { } else {
return "http://logs-sytxpublic-msgq-service/api/queueAction/producer/springBoard"; return "http://logs-sytxpublic-msgq-service/api/queueAction/producer/springBoard";
} }
......
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