主管理员 2 months ago
parent
commit
01cfbd0d2b
1 changed files with 36 additions and 0 deletions
  1. +36
    -0
      api/model/index-lzx.js

+ 36
- 0
api/model/index-lzx.js View File

@ -0,0 +1,36 @@
// 登录相关接口
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

Loading…
Cancel
Save