风险测评小程序前端代码仓库
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.
 
 
 

35 lines
568 B

// 个人中心相关接口
const api = {
// 修改个人信息接口
updateInfo: {
url: '/userInfo/updateUser',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 获取个人信息
getInfo: {
url: '/userInfo/queryUser',
method: 'GET',
auth: true,
},
// 咨询客服-常见问题列表
queryFaqList: {
url: '/userInfo/queryFaqList',
method: 'GET',
},
// 我的-意见反馈
addFeedback: {
url: '/userInfo/addFeedback',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
}
export default api