空木箱入库添加层数

This commit is contained in:
2024-05-10 14:07:13 +08:00
parent 9074563bcf
commit 1a12c9bfad
2 changed files with 16 additions and 3 deletions

View File

@@ -20,12 +20,13 @@ export const twoPdaVehicleIn = (code, type, pcode) => request({
* 二期空木箱入库
*/
// 1.1空木箱入库-【入库按钮】
export const twoPdaBoxIn = (code, no, pcode) => request({
export const twoPdaBoxIn = (code, no, pcode, layer) => request({
url:'api/twoPda/vehicle/boxIn',
data: {
vehicle_code: code,
box_no: no,
point_code: pcode
point_code: pcode,
layer: layer
}
})
/**