From 5cd1cd11dc0a4bcfdbc86b7d30418ef61bc4504d Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期三, 08 一月 2025 17:00:34 +0800 Subject: [PATCH] format --- src/components/chat/chatComponents/summaryCom/SummaryCom.vue | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/components/chat/chatComponents/summaryCom/SummaryCom.vue b/src/components/chat/chatComponents/summaryCom/SummaryCom.vue index 07ead16..be5c365 100644 --- a/src/components/chat/chatComponents/summaryCom/SummaryCom.vue +++ b/src/components/chat/chatComponents/summaryCom/SummaryCom.vue @@ -9,9 +9,11 @@ :is="summaryAnswerTypeMapCom[item.type]" :data="item" :originData="originData" + :reportIndex="reportIndex" :summaryIndex="index" chartHeight="20rem" :tableLimitHeight="tableLimitHeight" + :historyId="historyId" @updateQuery="(res) => updateRecordSet(index, res)" :disabled="isTalking || isSharePage" ></component> @@ -35,7 +37,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 +55,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 +121,7 @@ // infoDlgIsShow.value = true; // }; + + </script> <style scoped lang="scss"></style> -- Gitblit v1.9.3