重定位

This commit is contained in:
2025-08-18 13:51:04 +08:00
parent fc92bf1755
commit 5dc0b64860
6 changed files with 73 additions and 5 deletions

View File

@@ -39,3 +39,11 @@ export const updateStation = (code, st) => post('api/operate/updateStation', {
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 rebootVehicle = () => get('vehicle/rebootVehicle', {})