| | |
| | | chartHeight="20rem" |
| | | :tableLimitHeight="tableLimitHeight" |
| | | @updateQuery="(res) => updateRecordSet(index, res)" |
| | | :disabled="isTalking" |
| | | :disabled="isTalking || isSharePage" |
| | | ></component> |
| | | |
| | | <div class="flex flex-col" v-if="showReportIndex.includes(index) && conclusion?.length > 0"> |
| | |
| | | <span> |
| | | {{ toggleReportLabel(item) }} |
| | | </span> |
| | | <span class="ywifont" :class="{ 'ywicon-unfold': !item.stepIsShow, 'ywicon-fold': item.stepIsShow }"></span> |
| | | <span class="ywifont" :class="{ 'ywicon-unfold': !item.reportIsShow, 'ywicon-fold': item.reportIsShow }"></span> |
| | | </div> |
| | | </div> |
| | | |
| | |
| | | |
| | | import ReportDlg from './ReportDlg.vue'; |
| | | import { md } from '../../libs/markdown'; |
| | | import { isSharePage } from '/@/stores/chatRoom'; |
| | | const props = defineProps(chatComProps); |
| | | const tableLimitHeight = document.body.clientHeight * 0.7; |
| | | const parsedData = computed<any[]>(() => { |