|
@@ -47,6 +47,10 @@ export const getUserPageForTeacher = (params: PageParam) => {
|
|
|
return request.get({ url: '/system/user/pageForTeacher', params })
|
|
|
}
|
|
|
|
|
|
+export const getStudentForTeacher = (params: PageParam) => {
|
|
|
+ return request.get({ url: '/system/user/getStudentsForTeacher', params })
|
|
|
+}
|
|
|
+
|
|
|
// 查询毕业生列表
|
|
|
export const getGraduateStudentPage = (params: PageParam) => {
|
|
|
return request.get({ url: '/system/user/graduateStudentPage', params })
|
|
@@ -237,4 +241,3 @@ export const exportStudentPassedExcel = (params) => {
|
|
|
export const exportStudentUnPassedExcel = (params) => {
|
|
|
return request.download({ url: '/system/user/exportStudentUnPassedExcel', params })
|
|
|
}
|
|
|
-
|