mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
feat: add corrletion analysis & multi-layer modeling router
This commit is contained in:
parent
50187a8ddc
commit
ef8100ba19
32
src/router/modules/correlationAnalysis.ts
Normal file
32
src/router/modules/correlationAnalysis.ts
Normal file
@ -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;
|
29
src/router/modules/multi-layer.ts
Normal file
29
src/router/modules/multi-layer.ts
Normal file
@ -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;
|
@ -3,7 +3,7 @@ export default {
|
|||||||
redirect: "/qa/chat",
|
redirect: "/qa/chat",
|
||||||
component: () => import("@/views/qa/chat/index.vue"),
|
component: () => import("@/views/qa/chat/index.vue"),
|
||||||
meta: {
|
meta: {
|
||||||
icon: "lollipop",
|
icon: "ri:table-line",
|
||||||
title: "问答系统",
|
title: "问答系统",
|
||||||
// showLink: false,
|
// showLink: false,
|
||||||
rank: 10
|
rank: 10
|
||||||
|
5
src/views/correlationAnalysis/correlation/index.vue
Normal file
5
src/views/correlationAnalysis/correlation/index.vue
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>关联度分析</div>
|
||||||
|
</template>
|
@ -0,0 +1,5 @@
|
|||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>关键参数提取</div>
|
||||||
|
</template>
|
5
src/views/multi-layer/management/index.vue
Normal file
5
src/views/multi-layer/management/index.vue
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>模型管理</div>
|
||||||
|
</template>
|
5
src/views/multi-layer/modeling/index.vue
Normal file
5
src/views/multi-layer/modeling/index.vue
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>多层建模</div>
|
||||||
|
</template>
|
Loading…
x
Reference in New Issue
Block a user