登录实现类说明

# 登录实现类列表 ## 配置页面案例 ![微信图片_20210402154901.png](https://cos.easydoc.net/80325504/files/kn00ases.png) ## organPwdLoginImpl==机构号+密码== 员工机构号 + 员工登录密码 配置信息 ``` { "inputs": [ { "key": "organCode", "name": "机构号", "type": "text" }, { "key": "pwd", "name": "密码", "type": "password" } ], "styles": {} } ``` ## ehrMobileLogin==员工号+手机号登录+验证码== 配置信息 ==smsTempId== 短信发送模板id ``` { "inputs": [ { "key": "ehr", "name": "员工号", "type": "text" }, { "key": "mobile_with_code", "name": "手机号", "type": "verify", "smsTempId":2 } ], "styles": {} } ``` ![QQ截图20210406170632.png](https://cos.easydoc.net/80325504/files/kn5strj4.png) ## ehrPwdLogin==员工号+密码登录== 登录配置信息 ``` { "inputs": [ { "key": "ehr", "name": "员工编号", "type": "text" }, { "key": "pwd", "name": "密码", "type": "password" } ], "styles": {} } ``` ![QQ截图20210406170743.png](https://cos.easydoc.net/80325504/files/kn5suy2o.png) ## organEhrLogin==员工号+机构号== 登录配置 ``` { "inputs": [ { "key": "ehr", "name": "员工号", "type": "text" }, { "key": "organCode", "name": "机构号", "type": "text" } ], "styles": {} } ``` ## organEhrPwd==员工号+机构号+密码== ```json { "inputs": [ { "key": "ehr", "name": "员工号", "type": "text" }, { "key": "organCode", "name": "机构号", "type": "text" }, { "key": "pwd", "name": "密码", "type": "password" } ], "styles": {} } ``` ## organEhrSmsLogin==员工号 机构号 短信验证码 登录== 登录配置 ```json { "inputs": [ { "key": "ehr", "name": "员工号", "type": "text" }, { "key": "organCode", "name": "机构号", "type": "text" }, { "key": "mobile_with_code", "name": "手机号", "type": "verify", "smsTempId":2 } ], "styles": {} } ``` ## organPwdLogin==机构号+密码== 登录配置 ```json { "inputs": [ { "key": "organ", "name": "机构号", "type": "text" }, { "key": "pwd", "name": "密码", "type": "password" } ], "styles": {} } ``` ## organPwdSmsLogin==机构号+密码+验证码登录== ```json { "inputs": [ { "key": "organ", "name": "机构号", "type": "text" }, { "key": "pwd", "name": "密码", "type": "password" }, { "key": "mobile_with_code", "name": "手机号", "type": "verify", "smsTempId":2 } ], "styles": {} } ``` ## organSmsLogin==机构号验证码登录== ```json { "inputs": [ { "key": "organCode", "name": "机构号", "type": "text" },{ "key": "mobile_with_code", "name": "手机号", "type": "verify", "smsTempId":2 } ], "styles": {} } ```