龚焕茏
2024-05-23 38498783f5080482cc2f1f5493f28fec140154da
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)
}