添加静态菜单及对应空白页面;

This commit is contained in:
lucienteng
2024-09-03 11:12:14 +08:00
parent 8881708e2b
commit 3352e03935
35 changed files with 516 additions and 3 deletions

View 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;