推拿小程序前端代码仓库
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.
 
 
 

41 lines
667 B

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