|
@@ -122,7 +122,7 @@
|
|
|
class="span-item"
|
|
|
style="margin-left: 7px"
|
|
|
@click="saveChartMapHandle"
|
|
|
- v-if="![3,4,6,7,8,9].includes(chartInfo.Source)"
|
|
|
+ v-if="![3,4,6,7,8,9,10].includes(chartInfo.Source)"
|
|
|
>
|
|
|
<span> <i class="el-icon-collection" /> 保存 </span>
|
|
|
</span>
|
|
@@ -750,6 +750,16 @@ export default {
|
|
|
this.tableData = res.Data.EdbInfoList;
|
|
|
this.statisticFrequencyData = res.Data.DataResp;
|
|
|
this.setStatisticFrequency();
|
|
|
+ }else if(this.chartInfo.Source===10) { //跨品种分析
|
|
|
+ this.tableData = res.Data.EdbInfoList;
|
|
|
+ this.crossVarietyChartData = res.Data.DataResp;
|
|
|
+ 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)
|
|
|
+ }
|
|
|
+ this.setCrossVarietyChart();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -915,6 +925,8 @@ export default {
|
|
|
res=await fittingEquationInterface.refreshChart({ ChartInfoId })
|
|
|
}else if([7,8,9].includes(Source)) {
|
|
|
res=await statisticFeatureInterface.refreshChart({ ChartInfoId })
|
|
|
+ }else if(Source===10) {
|
|
|
+ res=await crossVarietyInterface.refreshChart({ ChartInfoId })
|
|
|
}
|
|
|
|
|
|
this.refreshLoading = false;
|
|
@@ -1324,6 +1336,8 @@ export default {
|
|
|
path='/fittingEquationChartEditor'
|
|
|
}else if([7,8,9].includes(this.chartInfo.Source)) {
|
|
|
path='/statisticFeatureChartEditor'
|
|
|
+ }else if(this.chartInfo.Source===10) {
|
|
|
+ path='/crossVarietyChartList'
|
|
|
}
|
|
|
|
|
|
|