Commit 0eca6a19 by 王悦

查询咨询客户列表

parent 28ba15a1
...@@ -6,7 +6,9 @@ class TradetransferAPI extends APIBase { ...@@ -6,7 +6,9 @@ class TradetransferAPI extends APIBase {
constructor() { constructor() {
super(); super();
this.execlient = system.getObject("util.execClient"); this.execlient = system.getObject("util.execClient");
this.utilsNeedSve = system.getObject("service.utilsSve.utilsNeedSve");
this.channelApiUrl = settings.channelApiUrl(); this.channelApiUrl = settings.channelApiUrl();
this.centerChannelUrl = settings.centerChannelUrl();
this.appInfo = { this.appInfo = {
aliyuntmtransfer: { appkey: settings.appKey, secret: settings.secret } aliyuntmtransfer: { appkey: settings.appKey, secret: settings.secret }
}; };
...@@ -168,5 +170,16 @@ class TradetransferAPI extends APIBase { ...@@ -168,5 +170,16 @@ class TradetransferAPI extends APIBase {
return rtn; return rtn;
} }
//查询咨询客户列表
async queryTradeIntentionUserList(p,obj) {
let sobj = {
"actionType": "QueryTradeIntentionUserList",
};
let tokenInfo = await this.utilsNeedSve.getCenterToken();
let url = this.centerChannelUrl + "/web/trade/brand/springBoard";
return await this.execlient.execPostTK(sobj, url, tokenInfo.data.token);
}
} }
module.exports = TradetransferAPI; module.exports = TradetransferAPI;
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