|
|
|
|
// 登录相关接口
|
|
|
|
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
|