学校考勤统计优化

This commit is contained in:
paidaxing444
2020-09-23 16:25:26 +08:00
parent 1520a7a296
commit 2685bc096a
15 changed files with 866 additions and 14 deletions

View File

@ -50,4 +50,13 @@ export function exportDetail(query) {
method: 'get',
params: query
})
}
// 查询幼儿考勤列表
export function listDatetime(query) {
return request({
url: '/benyi/datetime/list',
method: 'get',
params: query
})
}

View File

@ -58,4 +58,13 @@ export function exportClass(query) {
method: 'get',
params: query
})
}
// 查询班级信息列表
export function listClassCheck(query) {
return request({
url: '/system/class/checklist',
method: 'get',
params: query
})
}