change and add two pages

This commit is contained in:
2025-05-22 16:03:37 +08:00
parent bfbf1f6e42
commit 1378696a78
9 changed files with 281 additions and 29 deletions

View File

@@ -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
}
})