|
@@ -660,6 +660,10 @@ export default {
|
|
|
|
|
|
//雷达图
|
|
|
this.chartInfo.ChartType === 11 && this.initRadarData(res.Data);
|
|
|
+
|
|
|
+ // 截面组合图
|
|
|
+ this.chartInfo.ChartType===14&&this.initSectionalCombinationChart(res.Data);
|
|
|
+
|
|
|
}else if([2,5].includes(this.chartInfo.Source)) {
|
|
|
this.tableData = [res.Data.EdbInfoList[0]];
|
|
|
this.chartInfo = res.Data.ChartInfo.Source===5 ? {
|
|
@@ -885,7 +889,7 @@ export default {
|
|
|
if (res.Ret !== 200) return
|
|
|
this.$message.success(res.Msg);
|
|
|
|
|
|
- Source===1&&![7,10,11].includes(ChartType)
|
|
|
+ Source===1&&![7,10,11,14].includes(ChartType)
|
|
|
? this.getPreviewChartInfo()
|
|
|
: this.getChartDetail(UniqueCode);
|
|
|
},
|