【修复】AI:对话管理不展示的问题
parent
616fe2c3c1
commit
a2474c9c43
|
@ -44,7 +44,7 @@ export interface ImageMidjourneyImagineReqVO {
|
||||||
base64Array: string[] // size不能为空
|
base64Array: string[] // size不能为空
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO 芋艿:review 下整体注释、方法名
|
||||||
// AI API 密钥 API
|
// AI API 密钥 API
|
||||||
export const ImageApi = {
|
export const ImageApi = {
|
||||||
// 获取 image 列表
|
// 获取 image 列表
|
||||||
|
@ -65,6 +65,6 @@ export const ImageApi = {
|
||||||
},
|
},
|
||||||
// 删除
|
// 删除
|
||||||
deleteImage: async (id: number)=> {
|
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>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import ChatConversationList from './ChatConversationList.vue'
|
||||||
|
import ChatMessageList from './ChatMessageList.vue'
|
||||||
|
|
||||||
/** AI 聊天对话 列表 */
|
/** AI 聊天对话 列表 */
|
||||||
defineOptions({ name: 'ChatConversation' })
|
defineOptions({ name: 'ChatConversation' })
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue