From 1476d27514874e9c95002451a81878bd9bec8382 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期六, 14 十二月 2024 15:36:53 +0800 Subject: [PATCH] 多轮对话 --- src/components/chat/chatComponents/summaryCom/SummaryCom.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/components/chat/chatComponents/summaryCom/SummaryCom.vue b/src/components/chat/chatComponents/summaryCom/SummaryCom.vue index 07ead16..8ae4904 100644 --- a/src/components/chat/chatComponents/summaryCom/SummaryCom.vue +++ b/src/components/chat/chatComponents/summaryCom/SummaryCom.vue @@ -35,7 +35,7 @@ </div> </template> </template> - <el-empty v-else :image-size="200" class="!py-3"> + <el-empty v-else :image-size="200" class="!py-3"> <!-- <template #description> <span > 鏆傛棤鏁版嵁 </span> </template> --> @@ -53,6 +53,7 @@ import ReportDlg from './ReportDlg.vue'; import { md } from '../../libs/markdown'; import { isSharePage } from '/@/stores/chatRoom'; +import service from '/@/utils/request'; const props = defineProps(chatComProps); const tableLimitHeight = document.body.clientHeight * 0.7; const parsedData = computed<any[]>(() => { @@ -118,5 +119,7 @@ // infoDlgIsShow.value = true; // }; + + </script> <style scoped lang="scss"></style> -- Gitblit v1.9.3