人工组盘
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user