Commit b3dcd9e2 by 宋毅

tj

parent e8f105db
...@@ -9,7 +9,7 @@ class TradetransferAPI extends APIBase { ...@@ -9,7 +9,7 @@ class TradetransferAPI extends APIBase {
this.channelApiUrl = settings.channelApiUrl(); this.channelApiUrl = settings.channelApiUrl();
this.utilsNeedSve = system.getObject("service.utilsSve.utilsNeedSve"); this.utilsNeedSve = system.getObject("service.utilsSve.utilsNeedSve");
this.regCenterOrderSve = system.getObject("service.utilsSve.regCenterOrderSve"); this.regCenterOrderSve = system.getObject("service.utilsSve.regCenterOrderSve");
} }
/** /**
...@@ -19,8 +19,8 @@ class TradetransferAPI extends APIBase { ...@@ -19,8 +19,8 @@ class TradetransferAPI extends APIBase {
* actionBody 执行的参数 * actionBody 执行的参数
*/ */
async springBoard(pobj, qobj, req) { async springBoard(pobj, qobj, req) {
console.log(pobj); console.log(pobj, ".....pobj....springBoard");
console.log(req); console.log(req, ".....req....springBoard");
if (!pobj.action_type) { if (!pobj.action_type) {
return system.getResult(null, "actionType参数不能为空"); return system.getResult(null, "actionType参数不能为空");
} }
...@@ -76,7 +76,7 @@ class TradetransferAPI extends APIBase { ...@@ -76,7 +76,7 @@ class TradetransferAPI extends APIBase {
case "soulutionFeebackAliEsp":// 2020 0928 lin 新增 阿里文网文 服务商侧提供接口2.4 ⽤户⽅案反馈通知服务商 case "soulutionFeebackAliEsp":// 2020 0928 lin 新增 阿里文网文 服务商侧提供接口2.4 ⽤户⽅案反馈通知服务商
opResult = await this.utilsNeedSve.soulutionFeebackAliEsp(pobj); opResult = await this.utilsNeedSve.soulutionFeebackAliEsp(pobj);
break; break;
// -------------提交reg需求--------laolan 2020.12.16-------百度reg接入使用--------start------------------ // -------------提交reg需求--------laolan 2020.12.16-------百度reg接入使用--------start------------------
case "submitRegNeed"://提交reg需求 case "submitRegNeed"://提交reg需求
opResult = await this.regCenterOrderSve.reqcenterchannel2(pobj); opResult = await this.regCenterOrderSve.reqcenterchannel2(pobj);
...@@ -90,7 +90,7 @@ class TradetransferAPI extends APIBase { ...@@ -90,7 +90,7 @@ class TradetransferAPI extends APIBase {
case "regOrderClose"://关闭reg订单 case "regOrderClose"://关闭reg订单
opResult = await this.regCenterOrderSve.regOrderClose(pobj); opResult = await this.regCenterOrderSve.regOrderClose(pobj);
break; break;
// -------------提交reg需求--------laolan 2020.12.16-------百度reg接入使用--------end------------------ // -------------提交reg需求--------laolan 2020.12.16-------百度reg接入使用--------end------------------
default: default:
opResult = system.getResult(null, "action_type参数错误"); opResult = system.getResult(null, "action_type参数错误");
break; break;
......
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