新增组盘查看、条码解绑、压制混碾满料搬运

This commit is contained in:
2024-06-24 16:18:27 +08:00
parent bb9c16fe1f
commit 32bce1af0a
4 changed files with 304 additions and 14 deletions

View File

@@ -162,4 +162,37 @@ export const handInst = (type, id) => request({
type: type,
inst_uuid: id
}
})
/**
* 压制混碾满料搬运
*/
export const mlTask = (code, vcode, weight, qty) => request({
url:'api/pda/mlTask',
data: {
deviceCode: code,
vehicle_code: vcode,
weight: weight,
qty: qty
}
})
/**
* 条码解绑
*/
export const vehicleUnbind = (code) => request({
url:'api/pda/vehicleUnbind',
data: {
point_code: code
}
})
/**
* 组盘查看
*/
export const zpxxTask = (code) => request({
url:'api/pda/zpxxTask',
data: {
vehicle_code: code
}
})