This commit is contained in:
lixin
2018-12-05 20:11:35 +08:00
4 changed files with 169 additions and 6 deletions

View File

@@ -330,3 +330,25 @@ export function delPost(num1) {
}
})
}
export function quit(num1) {
return request({
url: '',
method: 'post',
data: {
type: 2,
name: '人事档案管理_人员_离职操作',
param: '人员编号=' + num1 + '=int'
}
})
}
export function searchLeavingList(pageCurrent, pageSize) {
return request({
url: '',
method: 'post',
data: {
type: 1,
name: '人事档案管理_人员_离职人员查询',
pagination: pageCurrent + '&' + pageSize
}
})
}