You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
533 B
24 lines
533 B
import request from '@/utils/request'
|
|
|
|
// 备件领用审批列表
|
|
export function sparePartsApplicationApprovePage(params) {
|
|
return request({
|
|
url: '/eam/item-apply-main/getAppApprovePage',
|
|
'method': 'GET',
|
|
params
|
|
})
|
|
}
|
|
// 通过申请
|
|
export function sparePartsApplicationAgree(id) {
|
|
return request({
|
|
url: '/eam/item-apply-main/agree?id='+id,
|
|
'method': 'GET'
|
|
})
|
|
}
|
|
// 驳回申请
|
|
export function sparePartsApplicationReject(id) {
|
|
return request({
|
|
url: '/eam/item-apply-main/disAgree?id='+id,
|
|
'method': 'GET'
|
|
})
|
|
}
|
|
|