新增教研室和教员的时候,同步创建部门和教员账号

This commit is contained in:
2026-09-17 12:00:44 +08:00
parent f7299c36e8
commit 95a3571c69
25 changed files with 1452 additions and 50 deletions
@@ -100,3 +100,16 @@ export function endPublishTeachingTask(bh) {
params: { bh }
})
}
/**
* 导出教学任务书 Excel(该任务下全部教研室任务书课程明细)
* GET /teachingTask/exportTaskBook?bh=
*/
export function exportTaskBook(bh) {
return request({
url: '/teachingTask/exportTaskBook',
method: 'get',
params: { bh },
responseType: 'blob'
})
}