领料申请管理2

This commit is contained in:
wlikett 2023-12-23 19:51:46 +08:00
parent 5aeed17564
commit 419cf70b3b
1 changed files with 14 additions and 8 deletions

View File

@ -114,6 +114,15 @@ export function submitLeaseApply(params = {}){
}) })
} }
//编辑 领料申请
export function editLeaseApply(params = {}){
return request({
url:'/base/tm_task/edit',
method: 'post',
data:params
})
}
// 参数 领料任务 // 参数 领料任务
export function deleteTask( taskId ){ export function deleteTask( taskId ){
return request({ return request({
@ -131,13 +140,12 @@ export function getTaskDetail( params = {} ){
}) })
} }
// 领料审核 同意
// 获取 物品类型 export function auditLeaseByCompany(params = {} ){
export function getUseTypeTreee(params = {}){
return request({ return request({
url: '/material/backApply/getUseTypeTree', url:'/base/tm_task/auditLeaseByCompany',
method: 'post', method:'post',
data: params data:params
}) })
} }
@ -171,8 +179,6 @@ export function getUseTypeTreee(params = {}){