xiangpei
2024-11-28 efefbc15efe54bbd4da12bf8aff49432f5b752b8
1
2
3
4
5
6
7
8
9
10
import { get, post } from '@/utils/request'
 
export default {
  index: () => post('/api/admin/dashboard/index'),
  getData: query => post('/api/admin/examPaperAnswer/statistic', query),
  data: query => post('/api/admin/examPaperAnswer/data', query),
  queryCondition: query => get('/api/admin/exam/paper/queryCondition', query),
  examPaperList: query => get('/api/admin/exam/paper/list', query),
  page: query => post('/api/admin/examPaperAnswer/page', query)
}