123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import { DefineApiModule, Statistics } from 'api-type'
- const StatisticsApi: DefineApiModule<Statistics.ApiMap> = {
- /** 质量统计-自查一致性分析 */
- selfCheckAnalysis: {
- url: '/api/statistic/check/analysis',
- headers: {
- 'Content-Type': 'application/json',
- },
- },
- /** 质量统计-自查一致性分析-离差列表 */
- /** 质量统计-抽查情况统计 */
- statisticCheckOverview: '/api/statistic/check/overview',
- /** 质量统计-主观题校验 */
- getSubjectiveCheckList: '/api/subjective/check/page',
- /** 质量统计-主观题校验打分 */
- subjectiveCheckMark: '/api/subjective/check/mark',
- /** 质量统计-主观题校验确认 */
- subjectiveCheckConfirm: '/api/subjective/check/confirm',
- /** 决策分析-评卷进度统计(整体) */
- getMarkProgress: '/api/statistic/marking/progress',
- /** 决策分析-评卷进度统计(按小组) */
- getMarkProgressByGroup: '/api/statistic/marking/progress/by/group',
- /** 决策分析-评卷进度统计(按评卷员) */
- getMarkProgressByMarker: '/api/statistic/marking/progress/by/marker',
- /** 决策分析-评卷进度统计导出(按评卷员) */
- exportMarkProgressByMarker: {
- url: '/api/statistic/marking/progress/by/marker/export',
- download: true,
- },
- /** 质量统计-科目进度收尾 */
- subjectProgressEnd: '/api/statistic/marking/progress/ending',
- /** 质量统计-收尾检查-评卷员未评卷列表(分页) */
- unMarkPaperList: '/api/statistic/marking/progress/check/for/unmark/list',
- /** 质量统计-收尾检查-未处理雷同卷列表 */
- unProcessSimilarList: '/api/statistic/marking/progress/check/for/same/paper/list',
- /** 质量统计-收尾检查-未处理问题卷列表 */
- unProcessProblemList: '/api/statistic/marking/progress/check/for/problem/paper/list',
- /** 决策分析-小组监控 */
- getGroupMonitor: {
- url: '/api/statistic/monitor/for/group',
- headers: {
- 'Content-Type': 'application/json',
- },
- },
- /** 决策分析-监控统计(整体) */
- getStatistics: {
- url: '/api/statistic/monitor/list',
- headers: {
- 'Content-Type': 'application/json',
- },
- },
- /** 决策分析-监控统计(按小组) */
- getStatisticsByGroup: {
- url: '/api/statistic/monitor/list/by/group',
- headers: {
- 'Content-Type': 'application/json',
- },
- },
- /** 决策分析-监控统计导出(按小组) */
- exportStatisticsByGroup: {
- url: '/api/statistic/monitor/list/by/group/export',
- download: true,
- },
- /** 决策分析-监控统计(按评卷员) */
- /** 决策分析-监控统计导出(按评卷员) */
- /** 决策分析-监控统计客观题&主观题分数分布 */
- /** 培训监控 */
- getTrainingMonitor: '/api/train/monitor/list',
- /** 个人统计(评卷员) */
- getPersonalStatistic: {
- url: '/api/statistic/personal/result',
- headers: {
- 'Content-Type': 'application/json',
- },
- },
- /** 系统抽查卷 */
- getSystemSpotList: '/api/system/check/page',
- /** 系统抽查卷打分 */
- markSystemSpotPaper: '/api/system/check/mark',
- /** 系统抽查卷打回 */
- rejectSystemSpotPaper: '/api/system/check/reject',
- /** 系统抽查卷浏览 */
- viewSystemSpotPaper: '/api/system/check/view',
- }
- export default StatisticsApi
|