ZhangXianQiang
2024-06-26 6ab6b35fe3ac1ce90711e3555b19dde8ce1e21dc
src/api/modules/exam.js
@@ -1,14 +1,9 @@
import service from "@/api";
export const getExamList = () => {
  return service.get('/api/v1/getExamList');
}
export const getExamInfo = () => {
  return service.get('/api/v1/getExamInfo');
}
export const getExamListV2 = (postData = {examName: ''}) => {
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);
}