添加一个复职的功能,页面操作列按钮分成两行展示,添加根据离职过滤

This commit is contained in:
2026-09-22 10:17:37 +08:00
parent 2c5823df09
commit c9a2098f3f
7 changed files with 118 additions and 12 deletions
+9
View File
@@ -56,6 +56,15 @@ export function disableTeacher(jybh) {
})
}
/** 教员复职(还原离职状态)POST /jys/teacher/enable?jybh= */
export function enableTeacher(jybh) {
return request({
url: '/jys/teacher/enable',
method: 'post',
params: { jybh }
})
}
/** 查询教员属性 GET /jys/teacher/attribute/get?jybh= */
export function getTeacherAttribute(jybh) {
return request({