feat:【ele】【ai】manager 相关的迁移

This commit is contained in:
YunaiV
2025-10-26 20:13:39 +08:00
parent 60e199abf0
commit 94e9d9a228
11 changed files with 1098 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ import { ref } from 'vue';
import { DocAlert, Page } from '@vben/common-ui';
import { Card, Tabs } from 'ant-design-vue';
import { Tabs } from 'ant-design-vue';
import ChatConversationList from './modules/conversation-list.vue';
import ChatMessageList from './modules/message-list.vue';
@@ -17,15 +17,13 @@ const activeTabName = ref('conversation');
<DocAlert title="AI 对话聊天" url="https://doc.iocoder.cn/ai/chat/" />
</template>
<Card>
<Tabs v-model:active-key="activeTabName">
<Tabs.TabPane tab="对话列表" key="conversation">
<ChatConversationList />
</Tabs.TabPane>
<Tabs.TabPane tab="消息列表" key="message">
<ChatMessageList />
</Tabs.TabPane>
</Tabs>
</Card>
<Tabs v-model:active-key="activeTabName">
<Tabs.TabPane tab="对话列表" key="conversation">
<ChatConversationList />
</Tabs.TabPane>
<Tabs.TabPane tab="消息列表" key="message">
<ChatMessageList />
</Tabs.TabPane>
</Tabs>
</Page>
</template>

View File

@@ -23,7 +23,7 @@ function handleRefresh() {
gridApi.query();
}
/** 删除消息 */
/** 删除对话 */
async function handleDelete(row: AiChatConversationApi.ChatConversation) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.id]),
@@ -72,9 +72,6 @@ const [Grid, gridApi] = useVbenVxeGrid({
<template>
<Page auto-content-height>
<Grid table-title="对话列表">
<template #toolbar-tools>
<TableAction :actions="[]" />
</template>
<template #actions="{ row }">
<TableAction
:actions="[

View File

@@ -17,7 +17,7 @@ function handleRefresh() {
gridApi.query();
}
/** 删除 */
/** 删除图片 */
async function handleDelete(row: AiImageApi.Image) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.id]),
@@ -31,6 +31,7 @@ async function handleDelete(row: AiImageApi.Image) {
hideLoading();
}
}
/** 修改是否发布 */
async function handleUpdatePublicStatusChange(
newStatus: boolean,
@@ -56,6 +57,7 @@ async function handleUpdatePublicStatusChange(
});
});
}
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
schema: useGridFormSchema(),