feat-实现AI洞察功能
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
<template>
|
||||
<div class="table-container">
|
||||
<AiInsightResult
|
||||
v-if="data.question_conclusion"
|
||||
:result="data.question_conclusion"
|
||||
/>
|
||||
<a-table
|
||||
:align="'center'"
|
||||
:columns="columns"
|
||||
@@ -37,6 +41,7 @@ import { defineComponent, ref, watch, inject, computed } from 'vue';
|
||||
import { getFileExtension } from '@/utils/file';
|
||||
import { cloneDeep } from 'lodash';
|
||||
import { downloadFile } from '@/views/DataAnalyse/composables/downloadFile';
|
||||
import AiInsightResult from '@/views/DataAnalyse/diagram/components/AiInsightResult';
|
||||
import { useStore } from 'vuex';
|
||||
import { useRoute } from 'vue-router';
|
||||
import { downloadAllFile, downloadFileSheet, getDiagramAnalysis } from '@/api/data-analyse';
|
||||
@@ -57,7 +62,7 @@ export default defineComponent({
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
components: { ImagePreview },
|
||||
components: { ImagePreview, AiInsightResult },
|
||||
setup(props) {
|
||||
const store = useStore();
|
||||
const route = useRoute();
|
||||
|
||||
Reference in New Issue
Block a user