Commit 9513ad99 by 王昆

gsb

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