1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import { DefineApiModule, Marking } from 'api-type'
- const MarkingApi: DefineApiModule<Marking.ApiMap> = {
- /** 自定义查询 - 抽查 */
- getCustomQueryTasks: '/api/custom/query/page',
- /** 自定义查询 - 保存为快捷查询 */
- setCustomQueryConfig: {
- url: '/api/custom/query/save',
- headers: {
- 'Content-Type': 'application/json',
- },
- },
- /** 自定义查询 - 获取快捷查询列表 */
- getCustomQueryConfigList: '/api/custom/query/list',
- /** 查看评分标准 */
- getMarkingStandard: '/api/mark/markstandard',
- /** 获取评卷任务 */
- getMarkingTask: '/api/mark/task',
- /** 提交评卷任务 */
- submitMarkTask: '/api/mark/submit',
- /** 获取评卷进度 */
- getMarkStatus: '/api/mark/status',
- /** 获取回评历史 */
- getMarkHistory: '/api/mark/remark',
- /** 问题卷列表 */
- getProblemHistory: '/api/problem/history/page',
- /** 问题卷打分 */
- markProblemPaper: '/api/problem/history/mark',
- /** 通过taskId 查询给分记录 */
- getMarkScoreHistoryListWithTask: '/api/mark/history/task',
- /** 通过secretNumber 查询给分记录 */
- getMarkScoreHistoryListWithSecret: '/api/mark/history/secretNumber',
- /** 打回 */
- rejectMarkHistory: '/api/problem/history/reject',
- /** 仲裁卷 */
- getArbitrationList: '/api/arbitration/page',
- /** 仲裁卷打分 */
- markArbitrationPaper: '/api/arbitration/mark',
- /** 仲裁卷浏览 */
- viewArbitrationPaper: '/api/arbitration/view',
- /** 重评卷列表 */
- getReMarkPaperList: '/api/re/mark/page',
- /** 重评卷打分 */
- markReMarkPaper: '/api/re/mark/mark',
- /** 重评卷确认 */
- confirmReMarkPaper: '/api/re/mark/confirm',
- /** 查看培训记录 */
- viewTrainingRecord: '/api/mark/sample/history',
- /** 查看样卷 */
- viewSamplePaper: '/api/mark/rf',
- }
- export default MarkingApi
|