敢为人鲜小程序前端代码仓库
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.
 
 
 

32 lines
537 B

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