取样计数

This commit is contained in:
2024-05-22 15:43:21 +08:00
parent fbd743591d
commit fcea3bd8e7
2 changed files with 72 additions and 0 deletions

View File

@@ -189,3 +189,10 @@ export const kilnMoveCreateTask = (sp, code) => post('api/pda/manual/kiln/move/c
export const materialReturn = (code) => post('api/pda/manual/materialReturn', {
vehicle_code: code
})
/**
* 取样计数
*/
export const samplingCountNum = (code, number) => post('api/pda/manual/samplingCountNum', {
vehicle_code: code,
number: number
})