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

33 lines
590 B

  1. // 测评相关接口
  2. const api = {
  3. // 测评-查询答题列表
  4. queryQuestionList: {
  5. url: '/exam/queryQuestionList',
  6. method: 'GET',
  7. },
  8. // 测评-提交答案
  9. updateAnswer: {
  10. url: '/exam/updateAnswer',
  11. method: 'GET',
  12. },
  13. // 测评-继续答题
  14. queryExamById: {
  15. url: '/exam/queryExamById',
  16. method: 'GET',
  17. },
  18. // 支付-创建订单
  19. createOrder: {
  20. url: '/exam/createOrder',
  21. method: 'POST',
  22. auth: true,
  23. limit : 500,
  24. showLoading : true,
  25. },
  26. // 我的-我的答题
  27. queryExamLogList: {
  28. url: '/exam/queryExamLogList',
  29. method: 'GET',
  30. },
  31. }
  32. export default api