wujingjing
2025-01-17 67d49e1d4c6b0519803982f8028253afa9552d0f
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>