|
@@ -7,13 +7,13 @@ import { orderApi } from "@/api/order";
|
|
|
import { chatApi } from '@/api/chat';
|
|
|
import { formatEchart, isNumberComprehensive } from '@/utils/format';
|
|
|
import { ORDER_OPTION_ENUM } from '@/utils/enum';
|
|
|
-import { getAreaOptions, getOrderAreaOptions } from './config/echartOptions'
|
|
|
+import { getOrderAreaOptions } from './config/echartOptions'
|
|
|
import * as echarts from 'echarts';
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
|
-import { useInfinite, useScroll, useChat, useRecommend } from '@/composables';
|
|
|
+import { useInfinite, useScroll, useChat } from '@/composables';
|
|
|
|
|
|
-const { recordList, isFetching, onScrolltolower, onReset, addHistoryRecord } = useInfinite('/front/bigModel/qa/pageList', { module: 1 });
|
|
|
+const { recordList, isFetching, onScrolltolower, onReset } = useInfinite('/front/bigModel/qa/pageList', { module: 1 });
|
|
|
const { scrollRef, scrollToBottom, scrollToBottomIfAtBottom } = useScroll();
|
|
|
const { chatDataSource, addChat, updateChat, clearChat, updateById } = useChat();
|
|
|
|
|
@@ -21,12 +21,8 @@ let controller = new AbortController();
|
|
|
|
|
|
const ANSWER_ID_KEY = '@@id@@';
|
|
|
|
|
|
-const pageDataSource = ref({});
|
|
|
-const chartRefDom = ref(null);
|
|
|
-
|
|
|
const chartInstance = {};
|
|
|
|
|
|
-const echartRef = ref([]);
|
|
|
const message = useMessage();
|
|
|
const reportDate = ref();
|
|
|
|
|
@@ -39,10 +35,8 @@ const workOrderParams = ref({
|
|
|
|
|
|
const switchActive = ref(false);
|
|
|
const tabActive = ref("daily");
|
|
|
-const model = ref({})
|
|
|
|
|
|
const isLoading = ref(false);
|
|
|
-const inputRef = ref(null);
|
|
|
const recordActive = ref(null);
|
|
|
|
|
|
const currenSessionId = ref(null);
|
|
@@ -135,6 +129,7 @@ const onRegenerate = async (question, options) => {
|
|
|
answer,
|
|
|
loading: true,
|
|
|
delayLoading: false,
|
|
|
+ innerLoading: false
|
|
|
})
|
|
|
|
|
|
console.log( "chatDataSource", chatDataSource.value );
|
|
@@ -155,7 +150,8 @@ const onRegenerate = async (question, options) => {
|
|
|
showVal: question,
|
|
|
answer,
|
|
|
loading: false,
|
|
|
- delayLoading: false
|
|
|
+ delayLoading: false,
|
|
|
+ innerLoading: false
|
|
|
})
|
|
|
|
|
|
scrollToBottomIfAtBottom();
|
|
@@ -201,7 +197,8 @@ const handleSubmit = async (question, params) => {
|
|
|
|
|
|
updateChat({
|
|
|
...chatDataSourceItem.value,
|
|
|
- delayLoading: false
|
|
|
+ delayLoading: true,
|
|
|
+ innerLoading: false,
|
|
|
})
|
|
|
|
|
|
createEchart(option.echartWithTableData);
|
|
@@ -253,17 +250,12 @@ const handleCreateOrder = async () => {
|
|
|
const createEchart = (echartData) => {
|
|
|
|
|
|
setTimeout(() => {
|
|
|
-
|
|
|
echartData.forEach(({ key, xAxisData, yAxisData }) => {
|
|
|
-
|
|
|
- // if ( !chartInstance[key] ) {
|
|
|
- const dom = document.getElementById(key);
|
|
|
- chartInstance[key] = echarts.init(dom, null, { width: 680, height: 300 });
|
|
|
- // }
|
|
|
+ const dom = document.getElementById(key);
|
|
|
+ chartInstance[key] = echarts.init(dom, null, { width: 680, height: 300 });
|
|
|
|
|
|
const option = getOrderAreaOptions({ xAxisData, yAxisData });
|
|
|
|
|
|
- // chartInstance[key].clear();
|
|
|
chartInstance[key].setOption(option);
|
|
|
})
|
|
|
})
|
|
@@ -382,9 +374,10 @@ onUnmounted(() => {
|
|
|
:delay-loading="item.delayLoading"
|
|
|
:isSatisfied="item.isSatisfied"
|
|
|
:toggleVisibleIcons="false"
|
|
|
+ loadingText="数据分析中,请耐心等待..."
|
|
|
@on-click-icon="params => updateById(params)"
|
|
|
>
|
|
|
- <main v-show="!item.delayLoading">
|
|
|
+ <main v-show="!item.innerLoading">
|
|
|
<div
|
|
|
class="area_inner"
|
|
|
v-for="(item, index) in item.echartWithTableData"
|
|
@@ -619,4 +612,4 @@ onUnmounted(() => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-</style>../../utils/enum
|
|
|
+</style>
|