|
@@ -265,11 +265,13 @@ export default {
|
|
|
}else if(this.chartInfo.Source===10) {
|
|
|
this.dataList = res.Data.EdbInfoList;
|
|
|
this.crossVarietyChartData = res.Data.DataResp;
|
|
|
+
|
|
|
+ /* 历史数据chartInfo里全是空 兼容下历史数据不崩 */
|
|
|
this.chartLimit = {
|
|
|
- min: Number(res.Data.DataResp.YMinValue),
|
|
|
- max: Number(res.Data.DataResp.YMaxValue),
|
|
|
- x_min: Number(res.Data.DataResp.XMinValue),
|
|
|
- x_max: Number(res.Data.DataResp.XMaxValue)
|
|
|
+ min: res.Data.ChartInfo.LeftMin?Number(res.Data.ChartInfo.LeftMin):Number(res.Data.DataResp.YMinValue),
|
|
|
+ max: res.Data.ChartInfo.LeftMax?Number(res.Data.ChartInfo.LeftMax):Number(res.Data.DataResp.YMaxValue),
|
|
|
+ x_min: res.Data.ChartInfo.XMin?Number(res.Data.ChartInfo.XMin):Number(res.Data.DataResp.XMinValue),
|
|
|
+ x_max: res.Data.ChartInfo.XMax?Number(res.Data.ChartInfo.XMax):Number(res.Data.DataResp.XMaxValue),
|
|
|
}
|
|
|
this.setCrossVarietyChart();
|
|
|
this.changeRelevanceOptions();//更改英文一样
|