You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
825 B
TypeScript
34 lines
825 B
TypeScript
export default {
|
|
path: "/systemManagement",
|
|
redirect: "/systemManagement/accountManagement",
|
|
meta: {
|
|
title: "系统管理",
|
|
icon: "projectIcon",
|
|
rank: 12
|
|
},
|
|
children: [
|
|
{
|
|
path: "/systemManagement/accountManagement",
|
|
name: "systemManagement",
|
|
component: () =>
|
|
import("@/views/systemManagement/accountManagement/index.vue"),
|
|
meta: {
|
|
title: "账号管理",
|
|
showLink: true,
|
|
showParent: true,
|
|
roles: ["admin", "common"]
|
|
}
|
|
},
|
|
{
|
|
path: "/systemManagement/loginStatus",
|
|
name: "LoginStatus",
|
|
component: () => import("@/views/systemManagement/loginStatus/index.vue"),
|
|
meta: {
|
|
title: "登录状态",
|
|
showLink: true,
|
|
roles: ["admin", "common"]
|
|
}
|
|
}
|
|
]
|
|
} as RouteConfigsTable;
|