add 空载具入库

This commit is contained in:
2026-01-30 16:39:23 +08:00
parent 9ab6c333c7
commit ea0d0074ae
5 changed files with 222 additions and 1 deletions

View File

@@ -134,4 +134,10 @@ export const getGroupByVehicleCode = (code) => request({
export const materialUpdate = (code, arr) => request({
url:'api/handheld/materialUpdate',
data: {vehicle_code: code, materials: arr}
})
// 空载具入库
export const emptyVehicleWarehousing = (list) => request({
url:'api/handheld/emptyVehicleWarehousing',
data: {vehicleList: list}
})