Commit 7a721824 by 兰国旗

closedNeedAndAddPathUrl

parent d7133a56
...@@ -78,7 +78,7 @@ class BaseAPI extends APIBase { ...@@ -78,7 +78,7 @@ class BaseAPI extends APIBase {
opResult = await this.aliyunqcSve.closeOrderDelivery(pobj); opResult = await this.aliyunqcSve.closeOrderDelivery(pobj);
break; break;
case "abolishIcpProgrammeByNeed"://前端关闭ICP需求及方案 case "abolishIcpProgrammeByNeed"://前端关闭ICP需求及方案
opResult = await this.aliyunqcSve.abolishIcpProgrammeByNeed(pobj); opResult = await this.baseqcSve.abolishIcpProgrammeByNeed(pobj);
break; break;
case "receiveIcpConfirmUrl"://前端关闭ICP需求及方案 case "receiveIcpConfirmUrl"://前端关闭ICP需求及方案
opResult = await this.aliyunqcSve.receiveIcpConfirmUrl(pobj); opResult = await this.aliyunqcSve.receiveIcpConfirmUrl(pobj);
......
...@@ -116,7 +116,11 @@ class BaseQcService { ...@@ -116,7 +116,11 @@ class BaseQcService {
return system.getResultSuccess(ns.orderNo); return system.getResultSuccess(ns.orderNo);
} }
//2020-10-29 laolan //2020-10-29 laolan
ns['uapp_id'] = needinfo.uapp_id; var uappId = {};
uappId['uapp_id'] = needinfo.uapp_id;
ns = ns ? ns : {};
ns = Object.assign(ns,uappId)
console.log('guanbi ns +++',ns)
return system.getResultSuccess(ns); return system.getResultSuccess(ns);
// return system.getResultSuccess(); // return system.getResultSuccess();
}) })
......
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