特易招,招聘小程序
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.
 
 
 

36 lines
700 B

// 登录相关接口
const api = {
//获取个人中心基础信息的接口
getUserCenterData: {
url: '/employ/user/getUserCenterData',
method: 'GET',
auth: true,
},
//开通VIP
// addVIP: {
// url: '/employ/user/getUserCenterData',
// method: 'POST',
// auth: true,
// limit : 500,
// showLoading : true,
// },
//个人实名认证 - 提交
addAuthenticationPerson: {
url: '/employ/authentication/addAuthenticationPerson',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
//个人实名认证 - 查询
getAuthenticationPerson: {
url: '/employ/authentication/getAuthenticationPerson',
method: 'GET',
auth: true
},
}
export default api