diff --git a/src/router/modules/correlationAnalysis.ts b/src/router/modules/correlationAnalysis.ts
new file mode 100644
index 0000000..bbb6f3b
--- /dev/null
+++ b/src/router/modules/correlationAnalysis.ts
@@ -0,0 +1,32 @@
+export default {
+ path: "/correlationAnalysis",
+ redirect: "/correlationAnalysis/parameterExtraction",
+ component: () =>
+ import("@/views/correlationAnalysis/parameterExtraction/index.vue"),
+ meta: {
+ icon: "ep:edit",
+ title: "关联分析",
+ // showLink: false,
+ rank: 5
+ },
+ children: [
+ {
+ path: "/correlationAnalysis/parameterExtraction",
+ name: "parameterExtraction",
+ component: () =>
+ import("@/views/correlationAnalysis/parameterExtraction/index.vue"),
+ meta: {
+ title: "关键参数提取"
+ }
+ },
+ {
+ path: "/correlationAnalysis/correlation",
+ name: "correlation",
+ component: () =>
+ import("@/views/correlationAnalysis/correlation/index.vue"),
+ meta: {
+ title: "关联度分析"
+ }
+ }
+ ]
+} as RouteConfigsTable;
diff --git a/src/router/modules/multi-layer.ts b/src/router/modules/multi-layer.ts
new file mode 100644
index 0000000..dec7f58
--- /dev/null
+++ b/src/router/modules/multi-layer.ts
@@ -0,0 +1,29 @@
+export default {
+ path: "/multi-layer",
+ redirect: "/multi-layer/modeling",
+ component: () => import("@/views/multi-layer/modeling/index.vue"),
+ meta: {
+ icon: "lollipop",
+ title: "多层建模",
+ // showLink: false,
+ rank: 1
+ },
+ children: [
+ {
+ path: "/multi-layer/modeling",
+ name: "modeling",
+ component: () => import("@/views/multi-layer/modeling/index.vue"),
+ meta: {
+ title: "模型建立"
+ }
+ },
+ {
+ path: "/multi-layer/management",
+ name: "management",
+ component: () => import("@/views/multi-layer/management/index.vue"),
+ meta: {
+ title: "模型管理"
+ }
+ }
+ ]
+} as RouteConfigsTable;
diff --git a/src/router/modules/qa.ts b/src/router/modules/qa.ts
index e0b15f4..ba89f32 100644
--- a/src/router/modules/qa.ts
+++ b/src/router/modules/qa.ts
@@ -3,7 +3,7 @@ export default {
redirect: "/qa/chat",
component: () => import("@/views/qa/chat/index.vue"),
meta: {
- icon: "lollipop",
+ icon: "ri:table-line",
title: "问答系统",
// showLink: false,
rank: 10
diff --git a/src/views/correlationAnalysis/correlation/index.vue b/src/views/correlationAnalysis/correlation/index.vue
new file mode 100644
index 0000000..1a76add
--- /dev/null
+++ b/src/views/correlationAnalysis/correlation/index.vue
@@ -0,0 +1,5 @@
+
+
+
+ 关联度分析
+
diff --git a/src/views/correlationAnalysis/parameterExtraction/index.vue b/src/views/correlationAnalysis/parameterExtraction/index.vue
new file mode 100644
index 0000000..a7c0355
--- /dev/null
+++ b/src/views/correlationAnalysis/parameterExtraction/index.vue
@@ -0,0 +1,5 @@
+
+
+
+ 关键参数提取
+
diff --git a/src/views/multi-layer/management/index.vue b/src/views/multi-layer/management/index.vue
new file mode 100644
index 0000000..4458788
--- /dev/null
+++ b/src/views/multi-layer/management/index.vue
@@ -0,0 +1,5 @@
+
+
+
+ 模型管理
+
diff --git a/src/views/multi-layer/modeling/index.vue b/src/views/multi-layer/modeling/index.vue
new file mode 100644
index 0000000..a91a0b3
--- /dev/null
+++ b/src/views/multi-layer/modeling/index.vue
@@ -0,0 +1,5 @@
+
+
+
+ 多层建模
+