This commit is contained in:
2024-12-25 16:07:51 +08:00
parent e39ea741ea
commit 453208f593
28 changed files with 867 additions and 63 deletions

View File

@@ -0,0 +1,31 @@
const Layout = () => import("@/layout/index.vue");
export default {
path: "/auth",
name: "res-auth",
component: Layout,
redirect: "/auth/company",
meta: {
icon: "ep:apple",
title: "auth管理",
rank: 1
},
children: [
{
path: "/auth/company",
name: "company",
component: () => import("@/views/auth/company/index.vue"),
meta: {
title: "公司管理"
}
},
{
path: "/auth/frontendUser",
name: "frontendUser",
component: () => import("@/views/auth/frontendUser/index.vue"),
meta: {
title: "用户管理"
}
}
]
} satisfies RouteConfigsTable;