feat: 修改 路由 配置

- 路由内容订正
This commit is contained in:
Huangzhe
2025-04-10 10:22:31 +08:00
parent 6021d30107
commit 304cd2f6d6
2 changed files with 48 additions and 12 deletions

View File

@@ -66,6 +66,10 @@ export default [
} }
] ]
}, },
],
},
{ {
path: "/knowledge/track", path: "/knowledge/track",
name: "track", name: "track",
@@ -75,10 +79,15 @@ export default [
title: "任务轨迹", title: "任务轨迹",
icon: "el-icon-s-home" icon: "el-icon-s-home"
} }
}, {
path: "/rules",
name: "rules",
component: () => import("@/views/rules/Index.vue"),
meta: {
title: "规则管理",
icon: "el-icon-s-home"
} }
] },
}
] ]
} }
]; ];

View File

@@ -0,0 +1,27 @@
<script>
export default {
name: 'rules',
data() {
return {
}
}
}
</script>
<template>
<div>
<el-card>
<template #header>
<div class="card-header">
<span>规则管理</span>
</div>
</template>
</el-card>
</div>
</template>
<style lang="scss" scoped>
</style>