33 lines
680 B
TypeScript
33 lines
680 B
TypeScript
const Layout = () => import("@/layout/index.vue");
|
|
|
|
export default {
|
|
path: "/airtools",
|
|
name: "airtools",
|
|
component: Layout,
|
|
redirect: "/airtools",
|
|
meta: {
|
|
icon: "ep:apple",
|
|
title: "工具管理",
|
|
rank: 7,
|
|
showLink: false
|
|
},
|
|
children: [
|
|
{
|
|
path: "/airtools",
|
|
name: "airtools-mana",
|
|
component: () => import("@/views/airtools/index.vue"),
|
|
meta: {
|
|
title: "航材管理"
|
|
}
|
|
},
|
|
{
|
|
path: "/airtools/orders",
|
|
name: "airtools-orders",
|
|
component: () => import("@/views/airtools/orders/index.vue"),
|
|
meta: {
|
|
title: "借归还记录"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|