From 27be908067bc9ea1b91f581fb4e5ae118c168773 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期四, 14 十一月 2024 16:37:30 +0800 Subject: [PATCH] bug修改 --- src/api/onlineEducation/student.js | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/api/onlineEducation/student.js b/src/api/onlineEducation/student.js index 46a6d13..2c77fd9 100644 --- a/src/api/onlineEducation/student.js +++ b/src/api/onlineEducation/student.js @@ -7,6 +7,12 @@ params: param }) } +export function getStudentAll() { + return request({ + url: '/student/list/checkAll', + method: 'get', + }) +} export function getStudentById(params) { return request({ @@ -65,3 +71,20 @@ }) } + +export function changeCompany(data) { + return request({ + url: '/student/changeStudentCompany', + method: 'post', + data: data + }) +} + + +export function getStuTrainRecord(param) { + return request({ + url: '/student/trainRecord', + method: 'get', + params: param + }) +} -- Gitblit v1.9.2