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
742 B
24 lines
742 B
import http from '../http'
|
|
// 获取库位
|
|
export function getLocation(number) {
|
|
return http.get('/eam/location/scanCodeByNumber?number='+number)
|
|
}
|
|
// 出库获取库位
|
|
export function getOutLocation(data) {
|
|
return http.post('/eam/location/outScanCodeByNumber',data)
|
|
}
|
|
// 首页扫码获取详情
|
|
export function pdaItemAndLocation(number) {
|
|
return http.get('/eam/location/pdaItemAndLocation?number='+number)
|
|
}
|
|
|
|
|
|
// 获取领用出库主表分页列表
|
|
export function getOutLocationPage(params) {
|
|
return http.get('/eam/spare-parts-out-location-main/page',{params})
|
|
}
|
|
|
|
// 获取领用出库子表分页列表
|
|
export function getOutLocationDetailPage(params) {
|
|
return http.get('/eam/spare-parts-out-location-detail/page',{params})
|
|
}
|