放货确认

This commit is contained in:
2024-08-07 17:59:31 +08:00
parent b18d5834c9
commit 9f94350422
5 changed files with 29 additions and 24 deletions

View File

@@ -88,11 +88,10 @@ export const handTaskoperation = (type, id) => request({
/**
* 放货确认
*/
export const updateTask = (code1,code2,type) => request({
export const updateTask = (code,type) => request({
url:'api/wms/updateTask',
data: {
device_code: code1,
task_code: code2,
device_code: code,
option: type
}
})