Commit 1a38efcb by 陈思聪

fix: 服务商修改资料后重新提交接口使用post方式提交

parent 234d6356
......@@ -349,7 +349,7 @@ async modifySubmitTransferMaterail(obj) {
ContactEmail: obj.contact_email
}
}
var result = await this.aliclient(sobj)
var result = await this.aliclient(sobj,'POST')
console.log(result);
return result;
// return {Success:false,msg:""}
......
......@@ -139,12 +139,13 @@ class ServiceBase {
return uuid.join('');
}
async aliclient(obj) {
async aliclient(obj,method='GET') {
var sobj = {
"actionProcess": "aliyuntmtransfer",
"actionType": "aliclient",
"sign": "2FviZ9PGws8Pt1fBhq0t90mjUvI",
"actionBody": obj
"actionBody": obj,
"method": method
}
var tokenInfo = await this.getToken();
var reqUrl = this.channelApiUrl + "/action/tradetransfer/aliclienttransfer";
......
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