diff --git a/src/glcc/api.js b/src/glcc/api.js index f0f99d61a..2ca79b72a 100644 --- a/src/glcc/api.js +++ b/src/glcc/api.js @@ -16,4 +16,13 @@ export function applyGlcc(data) { method: 'post', data: data }); -} \ No newline at end of file +} + +// 获取当前学生用户报名信息 +export function getStudentApplyInfo(params) { + return fetch({ + url: `/api/studentApply/getUserApplyInfo`, + method: 'get', + params + }); +} diff --git a/src/glcc/img/student.png b/src/glcc/img/student.png new file mode 100644 index 000000000..ede714eab Binary files /dev/null and b/src/glcc/img/student.png differ diff --git a/src/glcc/index.jsx b/src/glcc/index.jsx index cc621ddec..a21774fd4 100644 --- a/src/glcc/index.jsx +++ b/src/glcc/index.jsx @@ -28,6 +28,11 @@ const Help = Loadable({ loader: () => import("./help"), loading: Loading, }); +// 任务管理审核 +const Student = Loadable({ + loader: () => import("./student"), + loading: Loading, +}); const Glcc = (propsF) => { @@ -37,6 +42,13 @@ const Glcc = (propsF) => { return (