人工组盘

This commit is contained in:
2023-09-26 17:28:46 +08:00
parent fd12d3871a
commit e78c7dcf04
3 changed files with 41 additions and 22 deletions

View File

@@ -1 +1,25 @@
import request from './request.js'
/**
* 人工组盘
*/
// 点位编码
export const getPressCode = () => request({
url:'api/pda/group/getPressCode',
data: {}
})
// 获取载具类型
export const getVehicleType = () => request({
url:'api/pda/group/getVehicleType',
data: {}
})
// 人工组盘-确认
export const groupmanual = (vcode, vtype, pcode, weight) => request({
url:'api/pda/group/manual',
data: {
vehicle_code: vcode,
vehicle_type: vtype,
point_code: pcode,
material_weight: weight
}
})