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.
|
|
|
export default {
|
|
|
|
path: "/systemManagement",
|
|
|
|
redirect: "/systemManagement/accountManagement",
|
|
|
|
meta: {
|
|
|
|
title: "系统管理",
|
|
|
|
icon: 3,
|
|
|
|
rank: 15
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "/systemManagement/sublibraryManagement",
|
|
|
|
name: "sublibraryManagement",
|
|
|
|
component: () =>
|
|
|
|
import("@/views/systemManagement/sublibraryManagement/index.vue"),
|
|
|
|
meta: {
|
|
|
|
title: "子库管理",
|
|
|
|
showLink: true,
|
|
|
|
showParent: true,
|
|
|
|
roles: ["admin", "common"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/systemManagement/accountManagement",
|
|
|
|
name: "systemManagement",
|
|
|
|
component: () =>
|
|
|
|
import("@/views/systemManagement/accountManagement/index.vue"),
|
|
|
|
meta: {
|
|
|
|
title: "账号管理",
|
|
|
|
showLink: true,
|
|
|
|
showParent: true,
|
|
|
|
roles: ["admin", "common"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/systemManagement/dictionaryManagement",
|
|
|
|
name: "dictionaryManagement",
|
|
|
|
component: () =>
|
|
|
|
import("@/views/systemManagement/dictionaryManagement/index.vue"),
|
|
|
|
meta: {
|
|
|
|
title: "字典管理",
|
|
|
|
showLink: true,
|
|
|
|
showParent: true,
|
|
|
|
roles: ["admin", "common"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
} as RouteConfigsTable;
|