// 登录相关接口
|
|
|
|
const api = {
|
|
// 微信登录接口
|
|
wxLogin: {
|
|
url: '/teambuy/login/login',
|
|
method: 'GET',
|
|
limit: 500,
|
|
},
|
|
// 绑定手机号码
|
|
bindPhone: {
|
|
url: '/teambuy/login/bindPhone',
|
|
method: 'GET',
|
|
// auth: true,
|
|
},
|
|
// 修改个人信息接口
|
|
updateUser: {
|
|
url: '/teambuy/userInfo/updateUser',
|
|
method: 'POST',
|
|
limit: 500,
|
|
showLoading: true,
|
|
// auth: true,
|
|
},
|
|
// 获取个人信息
|
|
getInfo: {
|
|
url: '/teambuy/userInfo/queryUser',
|
|
method: 'GET',
|
|
// auth: true,
|
|
},
|
|
}
|
|
|
|
export default api
|