change and add two pages
This commit is contained in:
@@ -24,21 +24,22 @@ export const handLogin = (user, password) => request({
|
||||
/**
|
||||
* 混碾搬运
|
||||
*/
|
||||
export const pdaHnby = (sp, ep, weight) => request({
|
||||
export const pdaHnby = (sp, ep, code) => request({
|
||||
url:'api/pda/hnby',
|
||||
data: {
|
||||
startPoint: sp,
|
||||
endPoint: ep,
|
||||
weight: weight
|
||||
barCode: code
|
||||
}
|
||||
})
|
||||
/**
|
||||
* 扫码出库
|
||||
* 扫码出入库
|
||||
*/
|
||||
export const pdaSmck = (code) => request({
|
||||
export const pdaSmck = (code, type) => request({
|
||||
url:'api/pda/smck',
|
||||
data: {
|
||||
barCode: code
|
||||
barCode: code,
|
||||
type: type
|
||||
}
|
||||
})
|
||||
/**
|
||||
@@ -100,3 +101,23 @@ export const handInst = (type, id) => request({
|
||||
inst_uuid: id
|
||||
}
|
||||
})
|
||||
/**
|
||||
* 混碾料罐绑定
|
||||
*/
|
||||
export const hnlgbd = (code, vcode, weight) => request({
|
||||
url:'api/pda/hnlgbd',
|
||||
data: {
|
||||
deviceCode: code,
|
||||
barCode: vcode,
|
||||
weight: weight
|
||||
}
|
||||
})
|
||||
/**
|
||||
* 料罐物料查询
|
||||
*/
|
||||
export const hnlgcx = (vcode) => request({
|
||||
url:'api/pda/hnlgcx',
|
||||
data: {
|
||||
barCode: vcode
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user