载具转移

This commit is contained in:
2024-05-22 15:33:35 +08:00
parent 9a631defbe
commit 1dcca714f3
4 changed files with 153 additions and 1 deletions

View File

@@ -171,3 +171,15 @@ export const kilnOutCreateTaskShow = () => post('api/pda/manual/kiln/out/createT
export const kilnOutCreateTask = (code) => post('api/pda/manual/kiln/out/createTask', {
vehicle_code: code
})
/**
* 载具转移
*/
// 下料起点下拉框
export const kilnMovePointList = () => post('api/pda/manual/kiln/move/pointList', {})
// 任务列表
export const kilnMoveCreateTaskShow = () => post('api/pda/manual/kiln/move/createTaskShow', {})
// 确认
export const kilnMoveCreateTask = (sp, code) => post('api/pda/manual/kiln/move/createTask', {
start_point: sp,
vehicle_code: code
})