活跃作者推荐

This commit is contained in:
2025-06-12 22:16:46 +08:00
parent a949996907
commit 56b1d23b8a
5 changed files with 300 additions and 39 deletions

11
src/api/centre_maps.js Normal file
View File

@@ -0,0 +1,11 @@
import axiosInstance from './axiosConfig';
export const getMapEditors = async () => {
try {
const response = await axiosInstance.get('/map/editors');
return response.data;
} catch (error) {
throw error;
}
};