出库加密

This commit is contained in:
bryan sun
2019-12-13 09:14:26 +08:00
parent 7b21901e25
commit 03b3dbbb0f
5 changed files with 216 additions and 57 deletions

View File

@@ -85,3 +85,24 @@ export function outRecord(...params) {
}
})
}
export function selectdepartment() {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '出库管理_部门查询'
}
})
}
export function selectleaders(department) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '出库管理_人员查询',
param: '考核部门编号=' + department
}
})
}