You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
723 B

const InterfaceConfig = {
/*
* 【1.4.1】用户名密码登录接口
* login_name 必填 string 登录名称base64后传输
* login_pwd 必填 string 登录密码base64后传输
* */
loginByLoginNameAndPassword:{
url:'intellioa/sys/login/loginByLoginNameAndPassword',
method:'post',
isTestLogin:false
},
/*
* 【1.4.2】根据person_id、identity_id获取用户上下文信息
* person_id 必填 string 登录名称base64后传输
* identity_id 必填 string 登录密码base64后传输
* */
getPersonInfo:{
url:'intellioa/sys/base/getPersonInfo',
method:'get',
isTestLogin:true
}
};
export default InterfaceConfig;