|
@@ -6,6 +6,7 @@ import apiCorrelation from '@/api/correlationChart'
|
|
|
import apiLineEquationChart from '@/api/lineEquationChart'
|
|
|
import apiStatisticFeatureChart from '@/api/statisticFeatureChart'
|
|
|
import apiCrossVarietyChart from '@/api/crossVarietyChart'
|
|
|
+import apiIntervalAnalysis from '@/api/intervalAnalysis'
|
|
|
import {apiMyClassifyList,apiMyChartAdd,apiAddClassify} from '@/api/myETA'
|
|
|
import { showToast } from 'vant';
|
|
|
import { useWindowSize } from '@vueuse/core'
|
|
@@ -38,6 +39,10 @@ const typeOpt=[
|
|
|
{
|
|
|
name:"跨品种分析",
|
|
|
type:6,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name:"区间分析",
|
|
|
+ type:7,
|
|
|
}
|
|
|
|
|
|
]
|
|
@@ -74,6 +79,8 @@ async function getChartList(){
|
|
|
res=await apiStatisticFeatureChart.searchChart(params)
|
|
|
}else if(type.value==6){
|
|
|
res=await apiCrossVarietyChart.searchChart(params)
|
|
|
+ }else if(type.value==7){
|
|
|
+ res=await apiIntervalAnalysis.searchChart(params)
|
|
|
}
|
|
|
|
|
|
if(res.Ret==200){
|