add 点对点任务

This commit is contained in:
2025-10-15 14:18:45 +08:00
parent 9311e8ebee
commit 4a40f26e2c
7 changed files with 146 additions and 1 deletions

View File

@@ -152,3 +152,8 @@ export const empVehicleOut = (code, type) => request({
url:'api/pda/empVehicle/out',
data: {point_code: code, storagevehicle_type: type}
})
// 点对点任务
export const pointToPoint = (code1, code2, vcode, type, is) => request({
url:'api/pda/schPoint/pointToPoint',
data: {point_code1: code1, point_code2: code2, vehicle_code: vcode, task_type: type, is_vehicle: is}
})