Commit 5fe66d5f by 王悦

fix推送管理查询

parent 3b101b11
......@@ -14,14 +14,15 @@ class PushCtl extends CtlBase {
pageSize: pobj.pageInfo.pageSize,
pageIndex: pobj.pageInfo.pageNo
};
if (pobj.messageBody)
query.messageBody = pobj.messageBody;
let search = pobj.search;
if (search.messageBody)
query.messageBody = search.messageBody;
if (pobj.identify_code)
query.identifyCode = pobj.identify_code;
if (search.identify_code)
query.identifyCode = search.identify_code;
if (pobj.request_id)
query.requestIdInfo = pobj.request_id;
if (search.request_id)
query.requestIdInfo = search.request_id;
let actionType;
switch (pobj.bizpath) {
......
......@@ -55,7 +55,7 @@ var settings = {
},
pushUrl: function () {
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 {
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