添加静态菜单及对应空白页面;
This commit is contained in:
24
src/router/modules/airworthiness.ts
Normal file
24
src/router/modules/airworthiness.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
const Layout = () => import("@/layout/index.vue");
|
||||
|
||||
export default {
|
||||
path: "/airworthiness",
|
||||
name: "airworthiness",
|
||||
component: Layout,
|
||||
redirect: "/airworthiness",
|
||||
meta: {
|
||||
icon: "ep:apple",
|
||||
title: "适航资源",
|
||||
rank: 2
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: "/airworthiness",
|
||||
name: "airworthiness",
|
||||
component: () => import("@/views/airworthiness/index.vue"),
|
||||
meta: {
|
||||
title: "适航资源",
|
||||
roles: ["admin", "common"]
|
||||
}
|
||||
}
|
||||
]
|
||||
} satisfies RouteConfigsTable;
|
||||
Reference in New Issue
Block a user