重定位修改

This commit is contained in:
2025-10-20 17:30:02 +08:00
parent 0e14e656be
commit 381b9ebcfe
9 changed files with 54 additions and 859 deletions

View File

@@ -13,7 +13,7 @@ export const stopMapping = () => post('teaching/stopMapping', {})
export const getLocalMaps = () => post('teaching/getLocalMaps', {})
export const oneClickDeployment = (map) => post('teaching/oneClickDeployment?mapName=' + map, {})
export const abandonMapping = () => post('teaching/abandonMapping', {})
export const sendAutoBack = () => post('teaching/sendAutoBack', {})
export const sendAutoBack = (is) => post('teaching/sendAutoBack?isBack=' + is, {})
// 操作
export const queryStation = () => post('api/operate/queryStation', {})

View File

@@ -224,4 +224,12 @@ export const abandonMapping = (sn, code) => {
message: 'ok'
}
return res
}
export const relocate = (x, y, angle) => {
let res = {
code: 200,
message: 'ok'
}
return res
}