Commit e480e49c by 陈思聪

fix: 百度工商注册新流程

parent 6b35f967
......@@ -85,6 +85,24 @@ class GongshangClient extends BaseClient {
return res;
}
/**
* 百度工商注册新流程: 获取工商注册信息详情
*/
async getGongshangMaterial(username, deliverData){
console.log(`【百度工商注册新流程】deliveryId: ${deliverData.id} serviceId:${deliverData.demand_code}`)
let pushData = {
deliveryId: deliverData.id,
serviceId: deliverData.demand_code,
}
console.log(`开始调用百度获取工商注册信息详情(deliveryId=${deliverData.id}),请求参数:`+JSON.stringify(pushData))
const res = await this.pushQiFuTong(username, {
actionType: "getGongshangMaterial",
actionBody: pushData
});
console.log(`结束调用百度获取工商注册信息详情(deliveryId=${deliverData.id}),返回结果:`+JSON.stringify(res))
return res;
}
/**
* 百度工商注册新流程: 状态需要及时更新,方便用户了解当前进度。
......
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