This commit is contained in:
2023-09-27 14:06:43 +08:00
parent e78c7dcf04
commit 8ea9563d7a
2 changed files with 27 additions and 50 deletions

View File

@@ -23,3 +23,20 @@ export const groupmanual = (vcode, vtype, pcode, weight) => request({
material_weight: weight
}
})
/**
* 混碾搬运
*/
// 获取混碾机数据
export const getBlendingCode = () => request({
url:'api/pda/move/getBlendingCode',
data: {}
})
// 确认
export const sendTask = (vcode, spcode) => request({
url:'api/pda/move/sendTask',
data: {
vehicle_code: vcode,
start_point_code: spcode,
}
})