Commit 76ac7861 by 陈岩

feat: 门店热力/区域热力

1 parent 8aa94e87
...@@ -12,11 +12,16 @@ const routes = [ ...@@ -12,11 +12,16 @@ const routes = [
name: "HeatMap", name: "HeatMap",
component: () => import("@/views/heatMap/index.vue"), component: () => import("@/views/heatMap/index.vue"),
}, },
{
path: "/areaHeatMap",
name: "AreaHeatMap",
component: () => import("@/views/areaHeat/index.vue"),
},
]; ];
const isDev = process.env.NODE_ENV === 'development'; const isDev = process.env.NODE_ENV === "development";
const router = createRouter({ const router = createRouter({
history: createWebHistory(isDev ? '/' : '/apph5'), history: createWebHistory(isDev ? "/" : "/apph5"),
routes, routes,
}); });
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!