xiangpei
2024-07-07 33889c6b19467e2f8dae9990359704adc6e3419d
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)
}