加功能

This commit is contained in:
2025-09-16 18:01:49 +08:00
parent 3ac1d5f49c
commit 1a1ddd256f
14 changed files with 682 additions and 2710 deletions

View File

@@ -13,6 +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 queryStation = () => post('api/operate/queryStation', {})

View File

@@ -192,4 +192,11 @@ export const queryErrorDataByCode = (code) => {
]
}
return res
}
export const setStation = (sn, code) => {
let res = {
code: 200,
message: 'ok'
}
return res
}