爱简收旧衣按件回收前端代码仓库
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
676 B

// 登录相关接口
const api = {
// 微信登录接口
wxLogin: {
url: '/applet/login/appletLogin',
method: 'GET',
limit : 500,
showLoading : true,
},
// 获取绑定手机号码
bindPhone: {
url: '/applet/login/bindPhone',
method: 'GET',
auth: true,
},
// 修改个人信息接口
updateInfo: {
url: '/applet/login/updateUserInfo',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 获取个人信息
getUserByToken: {
url: '/applet/login/getUserByToken',
method: 'GET',
auth: true,
},
// 获取配置
getConfig: {
url: '/applet/login/getConfig',
method: 'GET',
auth: false,
},
}
export default api