api.js 711 B

12345678910111213141516
  1. module.exports = {
  2. content_list: '/api/content/list', //首页
  3. exam_total: '/api/exam/total', //考试统计
  4. paper_page: '/api/paper/page', //试卷列表
  5. paper_detail: '/api/paper/', //试卷详情
  6. paper_create: '/api/paper/create', //生成试卷订单
  7. p_result: '/api/result/', //考试详情
  8. // get_exam_question: '/api/paper/quest/init/', //考卷试题列表
  9. get_exam_question:'/api/paper/quest/get_exam_question/',
  10. judge_question: '/api/answer/quest/judge_question', //提交单个答案
  11. complete_exam: '/api/v3/result/complete_exam', //试卷交卷统一提交答案
  12. result_page: '/api/result/page', //做题记录列表
  13. answer_quest_get: '/api/answer/quest/get/', //重做获取题目
  14. };