xiangpei
2024-10-31 c090cd7b022216cc5c84ccbe7cd66d9f6ff5aaa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import service from "@/api";
 
 
export const getMeetList = (data) => {
  return service.post('/api/student/meet/page', data);
};
 
export const classMeet = (id) => {
  return service.get('/api/student/meet/' + id);
}
 
// 获取学生的班级
export const getStudentClasses = () => {
  return service.get('api/student/meet/classes');
}