import { http } from '@/utils/http' /** * 领料出库 ---- 列表查询接口 */ export const getPickingOutboundListAPI = (data) => { return http({ method: 'GET', url: '/material/lease_apply_info/list', data, }) } /** * 领料出库 ---- 列表详情 */ export const getOutboundDetailsAPI = (id) => { return http({ method: 'GET', url: `/material/lease_apply_info/${id}`, }) }