This commit is contained in:
2026-08-27 10:31:21 +08:00
parent 25f37a1d9a
commit 90e03e1faf
10 changed files with 126 additions and 16 deletions
@@ -93,3 +93,15 @@ export function listClassroomByJxldh(jxldh) {
params: { jxldh }
})
}
/**
* 下载教学场地导入模板(返回 Blob)
* GET /download/classroom
*/
export function downloadClassroomTemplate() {
return request({
url: '/download/classroom',
method: 'get',
responseType: 'blob'
})
}