marking.ts 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import { DefineApiModule, Marking } from 'api-type'
  2. const MarkingApi: DefineApiModule<Marking.ApiMap> = {
  3. /** 自定义查询 - 抽查 */
  4. getCustomQueryTasks: '/api/custom/query/page',
  5. /** 自定义查询 - 保存为快捷查询 */
  6. setCustomQueryConfig: {
  7. url: '/api/custom/query/save',
  8. headers: {
  9. 'Content-Type': 'application/json',
  10. },
  11. },
  12. /** 自定义查询 - 获取快捷查询列表 */
  13. getCustomQueryConfigList: '/api/custom/query/list',
  14. /** 查看评分标准 */
  15. getMarkingStandard: '/api/mark/markstandard',
  16. /** 获取评卷任务 */
  17. getMarkingTask: '/api/mark/task',
  18. /** 提交评卷任务 */
  19. submitMarkTask: '/api/mark/submit',
  20. /** 获取评卷进度 */
  21. getMarkStatus: '/api/mark/status',
  22. /** 获取回评历史 */
  23. getMarkHistory: '/api/mark/remark',
  24. /** 问题卷列表 */
  25. getProblemHistory: '/api/problem/history/page',
  26. /** 问题卷打分 */
  27. markProblemPaper: '/api/problem/history/mark',
  28. /** 通过taskId 查询给分记录 */
  29. getMarkScoreHistoryListWithTask: '/api/mark/history/task',
  30. /** 通过secretNumber 查询给分记录 */
  31. getMarkScoreHistoryListWithSecret: '/api/mark/history/secretNumber',
  32. /** 打回 */
  33. rejectMarkHistory: '/api/problem/history/reject',
  34. /** 仲裁卷 */
  35. getArbitrationList: '/api/arbitration/page',
  36. /** 仲裁卷打分 */
  37. markArbitrationPaper: '/api/arbitration/mark',
  38. /** 仲裁卷浏览 */
  39. viewArbitrationPaper: '/api/arbitration/view',
  40. /** 重评卷列表 */
  41. getReMarkPaperList: '/api/re/mark/page',
  42. /** 重评卷打分 */
  43. markReMarkPaper: '/api/re/mark/mark',
  44. /** 重评卷确认 */
  45. confirmReMarkPaper: '/api/re/mark/confirm',
  46. /** 查看培训记录 */
  47. viewTrainingRecord: '/api/mark/sample/history',
  48. /** 查看样卷 */
  49. viewSamplePaper: '/api/mark/rf',
  50. }
  51. export default MarkingApi