|
@@ -280,7 +280,7 @@ export default {
|
|
|
if(!Data) return
|
|
|
this.chartInfo = Data.ChartInfo;
|
|
|
if(!this.chartInfo) return
|
|
|
- if([1,11].includes(this.chartInfo.Source)) { //常规图
|
|
|
+ if([1,11,12].includes(this.chartInfo.Source)) { //常规图
|
|
|
//处理下历史默认来源
|
|
|
this.setDefaultSourceFrom();
|
|
|
//季节性图处理SeasonAverageConfig,SeasonRightEdbConfig
|
|
@@ -302,6 +302,9 @@ export default {
|
|
|
//截面组合图
|
|
|
this.chartInfo.ChartType===14 && this.initSectionalCombinationChart(res.Data)
|
|
|
|
|
|
+ // 区间分析
|
|
|
+ this.chartInfo.ChartType===1&&this.initIntervalAnalysisChartData(res.Data)
|
|
|
+
|
|
|
// 时序组合图控制是否堆叠
|
|
|
if(this.chartInfo.ChartType===6){
|
|
|
this.IsHeap=res.Data.DataResp.IsHeap===1?true:false
|