Commit f651d54a by 任晓松

update

parent f79b4000
......@@ -26,7 +26,7 @@ class Push360Service extends AppBase{
}
let tokenResult = JSON.parse(rtn.stdout);
let token = tokenResult.access_token;
url = this.push360Url + '/api/v1/eshop/GsbOrderUpdate?token=' + token;
url = this.push360Url + 'api/v1/eshop/GsbOrderUpdate?token=' + token;
pushObj = {
order_id: order_id,
status: status
......@@ -92,7 +92,7 @@ class Push360Service extends AppBase{
}
let tokenResult = JSON.parse(rtn.stdout);
let token = tokenResult.access_token;
let url = this.push360Url + '/api/v1/GsbSendsms';
let url = this.push360Url + 'api/v1/GsbSendsms';
let params = tmName + "|" + oneNcl + "|" + tmRegistNum + "|" + uploadFileName;
let subData = "token=" + token + "&mobile=" + mobile + "&templated=" + templateId + "&replaceContent=" + params;
let result = await this.execClient.execGet(subData, url);
......
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