add:AGV信息

This commit is contained in:
2026-03-24 09:41:44 +08:00
parent d6ed94fd0c
commit 0cbba7e8e3
49 changed files with 5074 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import request from '@/utils/request'
export function getMapList(params) {
return request({
url: 'api/mapLayout/list',
method: 'get',
params
})
}
export function getMapDetail(id) {
return request({
url: 'api/mapLayout/initLayout',
method: 'get',
params: { id }
})
}
export function deleteMap(ids) {
return request({
url: 'api/mapLayout',
method: 'delete',
data: ids
})
}
export default { getMapList, getMapDetail, deleteMap }