feat(m1): add customer detail aggregation view

This commit is contained in:
2026-05-25 01:28:36 +08:00
parent bfb8f23399
commit b5317d8f58
6 changed files with 109 additions and 7 deletions
@@ -14,6 +14,12 @@ const routes = [
component: () => import("../views/HomeView.vue"),
meta: { roles: ["SYS_ADMIN", "DEVELOPER", "OPS"] },
},
{
path: "customers/:id",
name: "customer-detail",
component: () => import("../views/CustomerDetailView.vue"),
meta: { roles: ["SYS_ADMIN", "DEVELOPER"], title: "客户详情" },
},
{
path: "customers",
name: "customers",