fix: mapApi缺少delete方法,前端提示不支持删除

This commit is contained in:
Hermes CI Fix
2026-07-14 15:33:41 +08:00
parent 17c7a35c77
commit 966c9808ec
+1
View File
@@ -42,6 +42,7 @@ export const mapApi = {
list: () => api.get('/maps'),
create: (data: any) => api.post('/maps', data),
update: (id: number, data: any) => api.put(`/maps/${id}`, data),
delete: (id: number) => api.delete(`/maps/${id}`),
createWithTemplate: (data: any) => api.post('/maps/create-with-template', data),
}