更新班组
This commit is contained in:
@@ -141,3 +141,13 @@ export function getPerView(data) {
|
||||
data:data
|
||||
})
|
||||
}
|
||||
|
||||
// 导出 Excel
|
||||
export function exportExcel(query) {
|
||||
return request({
|
||||
url: '/base/group-scheduling-plan/export-excel',
|
||||
method: 'get',
|
||||
params: query,
|
||||
responseType: 'blob'
|
||||
})
|
||||
}
|
||||
|
||||
@@ -90,3 +90,29 @@ export function getEnableData() {
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
||||
// 解除继承节假日
|
||||
export function disExtends(data) {
|
||||
return request({
|
||||
url: '/base/group-holiday/disExtends',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
// 恢复继承节假日
|
||||
export function reExtends(data) {
|
||||
return request({
|
||||
url: '/base/group-holiday/reExtends',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 获得部门节假日继承设置信息设置
|
||||
export function getSet(query) {
|
||||
return request({
|
||||
url: '/base/group-holiday-dept-set/getSet',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user