From 6d279e10194646139fb63bf8fddded84dfbc4777 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期日, 19 一月 2025 13:56:08 +0800 Subject: [PATCH] 剩余操作 --- src/components/chat/chatComponents/summaryCom/SummaryCom.vue | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/components/chat/chatComponents/summaryCom/SummaryCom.vue b/src/components/chat/chatComponents/summaryCom/SummaryCom.vue index 3c020c5..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,6 +37,11 @@ </div> </template> </template> + <el-empty v-else :image-size="200" class="!py-3"> + <!-- <template #description> + <span > 鏆傛棤鏁版嵁 </span> + </template> --> + </el-empty> <!-- <ReportDlg v-model="infoDlgIsShow" :report="report" :agentKey="agentKey"></ReportDlg> --> </div> </template> @@ -48,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[]>(() => { @@ -113,5 +121,7 @@ // infoDlgIsShow.value = true; // }; + + </script> <style scoped lang="scss"></style> -- Gitblit v1.9.3