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.
61 lines
1.5 KiB
61 lines
1.5 KiB
/**
|
|
* Created by GD on 2021/11/1.
|
|
* 通用接口
|
|
*/
|
|
export default {
|
|
/*
|
|
* 获取头像路径
|
|
* */
|
|
"getPersonTxByYw":{
|
|
// url:'/person/getPersonTxByYw',
|
|
url:'intellioa/sys/cloudPlatform/getPersonTxByYw',
|
|
method:'get',
|
|
isTestLogin:true
|
|
},
|
|
|
|
/*
|
|
* 【1.4.1】用户名密码登录接口
|
|
* login_name 必填 string 登录名称base64后传输
|
|
* login_pwd 必填 string 登录密码base64后传输
|
|
* */
|
|
checkLoginStatus:{
|
|
url:'/checkLoginStatus',
|
|
method:'post',
|
|
isTestLogin:false
|
|
},
|
|
|
|
/*
|
|
* CloudPlatform-3
|
|
* login_name 必填 string 登录名称base64后传输
|
|
* login_pwd 必填 string 登录密码base64后传输
|
|
* */
|
|
localLogin:{
|
|
url:'intellioa/sys/localLogin/login',
|
|
method:'post',
|
|
isTestLogin:false
|
|
},
|
|
|
|
/*
|
|
* 【1.4.2】根据person_id、identity_id获取用户上下文信息
|
|
* person_id 必填 string 登录名称base64后传输
|
|
* identity_id 必填 string 登录密码base64后传输
|
|
* */
|
|
getPersonInfo:{
|
|
//url:'/person/getPersonInfo',
|
|
url: "intellioa/sys/cloudPlatform/getPersonInfo",
|
|
method:'get',
|
|
isTestLogin:true
|
|
},
|
|
|
|
"getThisMonthPersonalSituation":{
|
|
url:"intellioa/attendance/attendanceRule/getThisMonthPersonalSituation",
|
|
method:"get",
|
|
isTestLogin:true
|
|
},
|
|
"getPersonTxBy": {
|
|
url: "person/getPersonTxByYw",
|
|
method: "get",
|
|
isTestLogin: false
|
|
},
|
|
}
|