在基础信息-学生管理-学生信息增加一个查新详情按钮,以弹窗展示学生信息详情
This commit is contained in:
@@ -80,11 +80,12 @@ export function delExperience(eduId) {
|
||||
})
|
||||
}
|
||||
|
||||
// 辅导员查看学生教育经历
|
||||
// 跟据学号查看学生教育经历
|
||||
export function getOwnExpFdy(stuNo){
|
||||
return request({
|
||||
url:`/comprehensive/experience/getOwnExpFdy/${stuNo}`,
|
||||
method:'get'
|
||||
url:'/comprehensive/experience/getOwnExpByStuNo',
|
||||
method:'get',
|
||||
params:{stuNo}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -18,6 +18,14 @@ export function getOwnInfo(){
|
||||
})
|
||||
}
|
||||
|
||||
// 跟据学号查询学生其他信息
|
||||
export function getOwnInfoByStuNo(stuNo){
|
||||
return request({
|
||||
url:'/comprehensive/extraInfo/getOwnInfoByStuNo',
|
||||
method:'GET',
|
||||
params:{stuNo}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 查询学生其他信息列表
|
||||
|
||||
@@ -108,7 +108,8 @@ export function deleteOwnFamilyFdy(id,stuNo){
|
||||
method:'GET'
|
||||
})
|
||||
}
|
||||
//
|
||||
|
||||
// 辅导员查看家庭成员列表
|
||||
export function getOwnFamilyFdy(stuNo){
|
||||
return request({
|
||||
method: 'get',
|
||||
|
||||
@@ -23,6 +23,15 @@ export function getOwnInfo() {
|
||||
})
|
||||
}
|
||||
|
||||
//跟据学号查询学生信息
|
||||
export function getOwnInfoByStuNo(stuNo) {
|
||||
return request({
|
||||
url: '/system/student/getOwnInfoByStuNo',
|
||||
method: 'get',
|
||||
params: {stuNo}
|
||||
})
|
||||
}
|
||||
|
||||
export function listEnableStu() {
|
||||
return request({
|
||||
url: '/system/student/listEnableStu',
|
||||
|
||||
Reference in New Issue
Block a user