diff --git a/api/model/index-lzx.js b/api/model/index-lzx.js new file mode 100644 index 0000000..0539032 --- /dev/null +++ b/api/model/index-lzx.js @@ -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 \ No newline at end of file