人工压制下料
This commit is contained in:
@@ -148,3 +148,26 @@ export const suppressCreateTask = (sp, ep, code) => post('api/pda/manual/suppres
|
||||
end_point: ep,
|
||||
vehicle_code: code
|
||||
})
|
||||
/**
|
||||
* 人工压制下料
|
||||
*/
|
||||
// 下料起点下拉框
|
||||
export const suppressDownPointList = () => post('api/pda/manual/suppress/down/pointList', {})
|
||||
// 压制送料任务列表
|
||||
export const suppressDownShow = () => post('api/pda/manual/suppress/down/show', {})
|
||||
// 确认
|
||||
export const suppressDownCreateTask = (sp, code, qty, is) => post('api/pda/manual/suppress/down/createTask', {
|
||||
start_point: sp,
|
||||
vehicle_code: code,
|
||||
qty: qty,
|
||||
is_full: is
|
||||
})
|
||||
/**
|
||||
* 人工出窑
|
||||
*/
|
||||
// 出窑任务列表
|
||||
export const kilnOutCreateTaskShow = () => post('api/pda/manual/kiln/out/createTaskShow', {})
|
||||
// 确认
|
||||
export const kilnOutCreateTask = (code) => post('api/pda/manual/kiln/out/createTask', {
|
||||
vehicle_code: code
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user