Commit a2474c9c by YunaiV

【修复】AI:对话管理不展示的问题

parent 616fe2c3
......@@ -44,7 +44,7 @@ export interface ImageMidjourneyImagineReqVO {
base64Array: string[] // size不能为空
}
// TODO 芋艿:review 下整体注释、方法名
// AI API 密钥 API
export const ImageApi = {
// 获取 image 列表
......@@ -65,6 +65,6 @@ export const ImageApi = {
},
// 删除
deleteImage: async (id: number)=> {
return await request.delete({ url: `/ai/image/delete-id-my?id=${id}`})
return await request.delete({ url: `/ai/image/delete-my?id=${id}`})
},
}
......@@ -12,6 +12,9 @@
</template>
<script setup lang="ts">
import ChatConversationList from './ChatConversationList.vue'
import ChatMessageList from './ChatMessageList.vue'
/** AI 聊天对话 列表 */
defineOptions({ name: 'ChatConversation' })
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment