42 lines
872 B
JavaScript
42 lines
872 B
JavaScript
import request from '@/utils/request'
|
|
/**重庆电热SMT操作相关接口定义**/
|
|
const Api = {
|
|
emptyPoleCall: '/api/restful/SMTPda/emptyPoleCall',
|
|
save: '/api/wms/pda/createPalletByBill',
|
|
queryEmptyLoc: '/api/wms/pda/queryEmptyLoc',
|
|
clearEmptyLoc: '/api/wms/pda/clearEmptyLoc',
|
|
}
|
|
|
|
/** 容器呼叫 */
|
|
export const emptyPoleCall = data => {
|
|
return request({
|
|
url: Api.emptyPoleCall,
|
|
data: data,
|
|
method: 'POST'
|
|
})
|
|
}
|
|
|
|
/** 单据组盘表单提交 */
|
|
export const save = data => {
|
|
return request({
|
|
url: Api.save,
|
|
data: data,
|
|
method: 'POST'
|
|
})
|
|
}
|
|
/** 查询空托盘巷道信息 */
|
|
export const queryEmptyLoc = data => {
|
|
return request({
|
|
url: Api.queryEmptyLoc,
|
|
data: data,
|
|
method: 'POST'
|
|
})
|
|
}
|
|
/** 查询空托盘巷道信息 */
|
|
export const clearEmptyLoc = data => {
|
|
return request({
|
|
url: Api.clearEmptyLoc,
|
|
data: data,
|
|
method: 'POST'
|
|
})
|
|
} |