ZhangXianQiang
2024-06-26 6ab6b35fe3ac1ce90711e3555b19dde8ce1e21dc
1
2
3
4
5
6
7
8
9
import service from "@/api";
 
export const getExamList = (postData = {examName: ''}) => {
  return service.post('/api/student/exam/page',postData);
}
 
export const getExamInfo = (id) => {
  return service.post('/api/student/exam/start/' + id);
}