| | |
| | | <template> |
| | | <div class="w-full space-y-3"> |
| | | <template v-if="parsedData && parsedData.length > 0"> |
| | | <template v-for="(item, index) in parsedData" :key="item.id"> |
| | | <div class="w-full space-y-3" v-if="parsedData && parsedData.length > 0"> |
| | | <div v-for="(item, index) in parsedData" :key="index"> |
| | | <!-- <el-button type="primary" v-if="showReportIndex.includes(index) && conclusion.length > 0" @click="showAgentReport(index)">报告</el-button> --> |
| | | <component |
| | | ref="componentRef" |
| | |
| | | <!-- 过程输出 --> |
| | | <div v-show="item.reportIsShow" class="max-h-[2/3vh] markdown-it" v-html="md.render(getReport(index))"></div> |
| | | </div> |
| | | </template> |
| | | </template> |
| | | </div> |
| | | </div> |
| | | <el-empty v-else :image-size="200" class="!py-3"> |
| | | <!-- <template #description> |
| | | <span > 暂无数据 </span> |