ZhangXianQiang
2024-06-28 138e7f7c49d854fc3c7ea662800231fad6e73c9e
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);
}