Commit ae503322 by zhaoxiqing

gsb

parent 7e335e70
...@@ -65,13 +65,12 @@ class ActionAPI extends APIBase { ...@@ -65,13 +65,12 @@ class ActionAPI extends APIBase {
case "handSign": case "handSign":
// opResult = await this.userSve.merchantLogin(action_body); // opResult = await this.userSve.merchantLogin(action_body);
break; break;
//
case "autoSign": case "autoSign":
// opResult = await this.userSve.info(action_body);
break;
case "ceshi":
opResult = await this.enginsignSve.autoSign(action_body); opResult = await this.enginsignSve.autoSign(action_body);
break; break;
case "organize":
opResult = await this.enginsignSve.organize(action_body);
break;
default: default:
opResult = system.getResult(null, "action_type参数错误"); opResult = system.getResult(null, "action_type参数错误");
break; break;
......
...@@ -113,9 +113,9 @@ class EngineSignService extends ServiceBase { ...@@ -113,9 +113,9 @@ class EngineSignService extends ServiceBase {
} }
// 企业模板印章 // 企业模板印章
async signQuery(params) { async organize(params) {
try { try {
return await this.callApi(this.API.signQuery, params); return await this.callApi(this.API.organize, params);
} catch (error) { } catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`); return system.getResult(null, `系统错误 错误信息 ${error}`);
} }
......
...@@ -56,9 +56,11 @@ var settings = { ...@@ -56,9 +56,11 @@ var settings = {
// 手动签 // 手动签
"handSign": `${domain}/sign/contract/handSign`, "handSign": `${domain}/sign/contract/handSign`,
// 签约查询 // 签约查询
"signQuery": `${domain}/sign/contract${domain}/signQuery`, "signQuery": `${domain}/sign/contract$/signQuery`,
// 签约回调 // 签约回调
"signCallBack": `${domain}/sign/contract${domain}/signCallBack`, "signCallBack": `${domain}/sign/contract$/signCallBack`,
//创建企业模板印章
"organize" : `${domain}/sign/seal/create/organize`,
}; };
}, },
apiconfig: { apiconfig: {
......
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