20200617-zlp-1

多部门切换
视频学习页面 过滤bug
This commit is contained in:
paidaxing444
2020-06-17 17:58:52 +08:00
parent 4b8bf8f5d4
commit 639357f280
17 changed files with 415 additions and 206 deletions

View File

@ -9,6 +9,23 @@ export function listDept(query) {
})
}
// 查询多幼儿园列表
export function getDeptsInfo() {
return request({
url: '/system/dept/getDeptsInfo',
method: 'get'
})
}
// 切换部门
export function changeDept(deptId) {
return request({
url: '/system/dept/changeDept/'+deptId,
method: 'post'
})
}
// 查询部门详细
export function getDept(deptId) {
return request({