辅导员查看学生填写的完整信息

This commit is contained in:
MDSMO
2025-08-28 15:16:19 +08:00
parent 8543ce1ce9
commit 3027834baf
2 changed files with 233 additions and 2 deletions

View File

@@ -76,6 +76,40 @@ export function updateExperience(data) {
export function delExperience(eduId) {
return request({
url: '/comprehensive/experience/' + eduId,
method: 'post'
method: 'delete'
})
}
// 辅导员查看学生教育经历
export function getOwnExpFdy(stuNo){
return request({
url:`/comprehensive/experience/getOwnExpFdy/${stuNo}`,
method:"get"
});
}
// 辅导员添加学生教育经历
export function addOwnExpFdy(data){
return request({
url:'/comprehensive/experience/addOwnExpFdy',
method:"post",
data
});
}
// 辅导员编辑学生教育经历
export function editOwnExpFdy(data){
return request({
url:'/comprehensive/experience/editOwnExpFdy',
method: 'POST',
data
});
}
// 辅导员删除学生教育经历
export function deleteOwnExpFdy(id){
return request({
url:`/comprehensive/experience/deleteOwnExpFdy/${id}`,
method:"post"
});
}