Commit 9513ad99 by 王昆

gsb

parents ef9e7c04 7e335e70
...@@ -64,7 +64,7 @@ class ActionAPI extends APIBase { ...@@ -64,7 +64,7 @@ class ActionAPI extends APIBase {
case "autoSign": case "autoSign":
// opResult = await this.userSve.info(action_body); // opResult = await this.userSve.info(action_body);
break; break;
case "test": case "ceshi":
opResult = await this.enginsignSve.autoSign(action_body); opResult = await this.enginsignSve.autoSign(action_body);
break; break;
default: default:
...@@ -74,8 +74,6 @@ class ActionAPI extends APIBase { ...@@ -74,8 +74,6 @@ class ActionAPI extends APIBase {
return opResult; return opResult;
} }
exam() { exam() {
return `<pre><pre/>`; return `<pre><pre/>`;
} }
......
...@@ -15,7 +15,13 @@ class EngineSignService extends ServiceBase { ...@@ -15,7 +15,13 @@ class EngineSignService extends ServiceBase {
} }
//二要素验证 /*
*二要素验证
* 姓名:id_name
*身份证:id_no
*
* */
async TwoFactorVerification(params) { async TwoFactorVerification(params) {
try { try {
return await this.callms("engine_auth", "TwoFactorVerification", params); return await this.callms("engine_auth", "TwoFactorVerification", params);
...@@ -24,7 +30,11 @@ class EngineSignService extends ServiceBase { ...@@ -24,7 +30,11 @@ class EngineSignService extends ServiceBase {
} }
} }
//三要素验证 /* 三要素验证
* 姓名:id_name
*身份证:id_no
*银行卡:bank_no
* */
async ThreeFactorVerification(params) { async ThreeFactorVerification(params) {
try { try {
return await this.callms("engine_auth", "ThreeFactorVerification", params); return await this.callms("engine_auth", "ThreeFactorVerification", params);
...@@ -33,7 +43,12 @@ class EngineSignService extends ServiceBase { ...@@ -33,7 +43,12 @@ class EngineSignService extends ServiceBase {
} }
} }
//四要素验证 /*四要素验证
* 姓名:id_name
*身份证:id_no
*银行卡:bank_no
*手机号:mobile
* */
async FourFactorVerification(params) { async FourFactorVerification(params) {
try { try {
return await this.callms("engine_auth", "FourFactorVerification", params); return await this.callms("engine_auth", "FourFactorVerification", params);
......
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