bug fix and performance improvements

This commit is contained in:
quantulr
2023-08-18 17:31:24 +08:00
parent b0206985cc
commit 52f9976196
9 changed files with 188 additions and 61 deletions

View File

@ -264,3 +264,24 @@ export function getCasNavigation() {
method: "get",
});
}
// /app/map/expertMap
export const getExpertMap = () =>
request({
url: "/app/map/expertMap",
method: "get",
});
// /app/map/enterpriseMap
export const getEnterpriseMap = () =>
request({
url: "/app/map/enterpriseMap",
method: "get",
});
// /app/map/achievementMap
export const getAchievementMap = () =>
request({
url: "/app/map/achievementMap",
method: "get",
});