|
@@ -0,0 +1,40 @@
|
|
|
+import Layout from "@/layout";
|
|
|
+
|
|
|
+const HomeRoutes = {
|
|
|
+ path: "/systemSettings",
|
|
|
+ component: Layout,
|
|
|
+ name: "systemSettings",
|
|
|
+ redirect: "/systemSettings/securityPolicy",
|
|
|
+ //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
|
|
|
+ meta: { title: "系统配置", elSvgIcon: "Fold" },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: "/systemSettings/securityPolicy",
|
|
|
+ name: "SecurityPolicy",
|
|
|
+ meta: { title: "安全策略", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () =>
|
|
|
+ import("@/views/systemSettings/securityPolicy/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/warningSet",
|
|
|
+ name: "WarningSet",
|
|
|
+ meta: { title: "预警告警策略", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () => import("@/views/systemSettings/warningSet/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/log",
|
|
|
+ name: "log",
|
|
|
+ meta: { title: "日志管理", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () => import("@/views/systemSettings/log/index.vue"),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/systemSettings/serviceManagement",
|
|
|
+ name: "ServiceManagement",
|
|
|
+ meta: { title: "服务管理", elSvgIcon: "Fold", icon: "table" },
|
|
|
+ component: () =>
|
|
|
+ import("@/views/systemSettings/serviceManagement/index.vue"),
|
|
|
+ },
|
|
|
+ ],
|
|
|
+};
|
|
|
+
|
|
|
+export default [HomeRoutes];
|