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

34 lines
568 B

  1. // 个人中心相关接口
  2. const api = {
  3. // 修改个人信息接口
  4. updateInfo: {
  5. url: '/userInfo/updateUser',
  6. method: 'POST',
  7. auth: true,
  8. limit : 500,
  9. showLoading : true,
  10. },
  11. // 获取个人信息
  12. getInfo: {
  13. url: '/userInfo/queryUser',
  14. method: 'GET',
  15. auth: true,
  16. },
  17. // 咨询客服-常见问题列表
  18. queryFaqList: {
  19. url: '/userInfo/queryFaqList',
  20. method: 'GET',
  21. },
  22. // 我的-意见反馈
  23. addFeedback: {
  24. url: '/userInfo/addFeedback',
  25. method: 'POST',
  26. auth: true,
  27. limit : 500,
  28. showLoading : true,
  29. },
  30. }
  31. export default api