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.
13 lines
417 B
13 lines
417 B
10 months ago
|
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)
|
||
|
}
|