33 lines
714 B
TypeScript
33 lines
714 B
TypeScript
const Layout = () => import("@/layout/index.vue");
|
|
|
|
export default {
|
|
path: "/syssettings",
|
|
name: "syssettings",
|
|
component: Layout,
|
|
redirect: "/syssettings/address",
|
|
meta: {
|
|
icon: "ep:apple",
|
|
title: "系统管理",
|
|
rank: 9,
|
|
showLink: false
|
|
},
|
|
children: [
|
|
{
|
|
path: "/syssettings/address",
|
|
name: "air-address",
|
|
component: () => import("@/views/syssettings/address/index.vue"),
|
|
meta: {
|
|
title: "地址管理"
|
|
}
|
|
},
|
|
{
|
|
path: "/syssettings/backup",
|
|
name: "sysbackup",
|
|
component: () => import("@/views/syssettings/backup/index.vue"),
|
|
meta: {
|
|
title: "系统备份"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|