This commit is contained in:
2023-05-13 11:28:33 +08:00
parent dc69438c65
commit 7fc3cff5ae
4 changed files with 241 additions and 0 deletions

View File

@@ -64,3 +64,9 @@ export const sendMaterial = (code, vcode, qty, weight, is) => post('api/pda/send
export const callMaterial = (code) => post('api/pda/callMaterial', {
point_code: code
})
// 送空
export const sendEmpty = (code, vcode) => post('api/pda/sendEmpty', {
point_code: code,
vehicle_code: vcode
})