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' }) }