This commit is contained in:
2025-08-20 16:48:08 +08:00
parent 5dc0b64860
commit c413f420b5
7 changed files with 165 additions and 46 deletions

View File

@@ -40,10 +40,6 @@ export const getMapInfoByCode = () => get('mapInfo/getMapInfoByCode', {})
export const queryMapAllStation = () => get('station/queryMapAllStation', {})
export const getRouteInfo = () => get('routeInfo/getRouteInfo', {})
// 下发任务
export const relocate = (x, y, angle) => get('teaching/relocate', {
x: x,
y: y,
angle: angle
})
export const relocate = (x, y, angle) => post('teaching/relocate?x=' + x + '&y=' + y + '&angle=' + angle, {})
// 关机重启
export const rebootVehicle = () => get('vehicle/rebootVehicle', {})