新增组盘查看、条码解绑、压制混碾满料搬运
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user