13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
|
|
import { http } from '@/utils/http'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 领料出库 ---- 列表查询接口
|
||
|
|
*/
|
||
|
|
export const getPickingOutboundListAPI = (data) => {
|
||
|
|
return http({
|
||
|
|
method: 'GET',
|
||
|
|
url: '/material/lease_apply_info/list',
|
||
|
|
data,
|
||
|
|
})
|
||
|
|
}
|