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'); }