| 物料编码 | +物料名称 | +物料规格 | +物料型号 | +
|---|---|---|---|
| {{e.point_code}} | +{{e.device_code}} | +{{e.material_spec}} | +{{e.material_model}} | +
request({ qty: qty, surplus_quantity: sqty } +}) + +/** + * 货架盘点 + */ +// 物料查询 +export const shelfMaterialQuery = (code) => request({ + url:'api/pda/shelf/materialQuery', + data: { + material_code: code + } +}) +// 确认 +export const shelfUpdateData = (code, status, vcode, qty, id) => request({ + url:'api/pda/shelf/updateData', + data: { + point_code: code, + point_status: status, + vehicle_code: vcode, + material_qty: qty, + material_id: id + } }) \ No newline at end of file