no message

This commit is contained in:
蔡玲
2024-09-06 15:31:28 +08:00
parent f2c9f1b896
commit da771473cb
4 changed files with 15 additions and 29 deletions

View File

@@ -36,9 +36,9 @@ export const handheldRack = (code, vcode) => request({
data: {device_code: code, vehicle_code: vcode}
})
// 外协区空笼框送回
export const handheldCageFrame = (type, code, list, rcode) => request({
export const handheldCageFrame = (type, code, list) => request({
url:'api/handheld/cageFrame',
data: {type: type, device_code: code, vehicle_list: list, region_code: rcode}
data: {type: type, device_code: code, vehicle_list: list}
})
// 物料转运
export const handheldTranshipment = (code, vcode) => request({
@@ -60,9 +60,9 @@ export const handheldStorehouse = (code, type) => request({
// url:'api/handheld/getRegionCode',
// data: {orderCode: code}
// })
export const handheldBlanking = (type, code, rcode, vcode, material, rcode1) => request({
export const handheldBlanking = (type, code, rcode, vcode, material) => request({
url:'api/handheld/blanking',
data: {type: type, device_code: code, region_code: rcode, vehicle_code: vcode, material: material, region_code1: rcode1}
data: {type: type, device_code: code, region_code: rcode, vehicle_code: vcode, material: material}
})
// 修改订单工序
export const fabOrders = (code) => request({