platform.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. return [
  3. 'menuList' => [
  4. [
  5. "id" => 1,
  6. "name" => '章节练习',
  7. "code" => 'day-practice',
  8. "icon" => get_image_url('/images/icons/menu/icon-day-practice.png'),
  9. 'page' => '/pages/exam/index?st=1'
  10. ],
  11. [
  12. "id" => 2,
  13. "name" => '历年真题',
  14. "code" => 'past-paper',
  15. "icon" => get_image_url('/images/icons/menu/icon-past-paper.png'),
  16. 'page' => '/pages/exam/index?st=2'
  17. ],
  18. [
  19. "id" => 3,
  20. "name" => '考点速记',
  21. "code" => 'mock-paper',
  22. "icon" => get_image_url('/images/icons/menu/icon-mock-paper.png'),
  23. 'page' => '/pages/exam/index?st=3',
  24. ],
  25. [
  26. "id" => 4,
  27. "name" => '模拟考试',
  28. "code" => 'mock-exam',
  29. "icon" => get_image_url('/images/icons/menu/icon-mock-exam.png'),
  30. 'page' => '/pages/exam/index?st=4',
  31. ],
  32. ],
  33. // 纠错类型
  34. "errors"=>[
  35. ['id'=>1,'name'=>'音/视频无法播放'],
  36. ['id'=>2,'name'=>'音/视频错误'],
  37. ['id'=>3,'name'=>'图片缺少'],
  38. ['id'=>4,'name'=>'图片错误'],
  39. ['id'=>5,'name'=>'选项错误'],
  40. ['id'=>6,'name'=>'有错别字'],
  41. ['id'=>7,'name'=>'知识点错误'],
  42. ['id'=>8,'name'=>'解析错误'],
  43. ['id'=>9,'name'=>'答案错误'],
  44. ['id'=>10,'name'=>'题干错误'],
  45. ]
  46. ];