feat: 增加内容生成配置管理
This commit is contained in:
@@ -23,6 +23,9 @@ const AgentManagementView = defineAsyncComponent(
|
||||
const AttentionManagementView = defineAsyncComponent(
|
||||
() => import("./components/AttentionManagementView.vue"),
|
||||
);
|
||||
const ContentGenerationConfigView = defineAsyncComponent(
|
||||
() => import("./components/ContentGenerationConfigView.vue"),
|
||||
);
|
||||
const DashboardView = defineAsyncComponent(
|
||||
() => import("./components/DashboardView.vue"),
|
||||
);
|
||||
@@ -593,6 +596,12 @@ async function clearFeishuCache() {
|
||||
>
|
||||
模型管理
|
||||
</button>
|
||||
<button
|
||||
:class="{ active: activeMenu === 'content-generation' }"
|
||||
@click="switchMenu('content-generation')"
|
||||
>
|
||||
内容生成
|
||||
</button>
|
||||
<button
|
||||
:class="{ active: activeMenu === 'configs' }"
|
||||
@click="switchMenu('configs')"
|
||||
@@ -990,6 +999,10 @@ async function clearFeishuCache() {
|
||||
</el-table>
|
||||
</template>
|
||||
|
||||
<ContentGenerationConfigView
|
||||
v-if="activeMenu === 'content-generation'"
|
||||
/>
|
||||
|
||||
<template v-if="activeMenu === 'configs'">
|
||||
<div class="page-head inline">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user