|
@@ -171,7 +171,7 @@ export default {
|
|
|
this.getThemeList('init')
|
|
|
|
|
|
//柱形图 截面散点切换到普通图 依赖的指标信息其实只有信息无数据 需清空
|
|
|
- if([7,10,11].includes(oldval)&&![7,10,11].includes(newval)) {
|
|
|
+ if([7,10,11,14].includes(oldval)&&![7,10,11,14].includes(newval)) {
|
|
|
this.tableData = [];
|
|
|
this.chartInfo.LeftMax = '';
|
|
|
this.chartInfo.LeftMin = '';
|
|
@@ -180,7 +180,7 @@ export default {
|
|
|
this.chartInfo.MarkersAreas = "";
|
|
|
}
|
|
|
//从普通图切换到柱形图,截面散点,雷达图 清空MarkersLines
|
|
|
- if(![7,10,11].includes(oldval)&&[7,10,11].includes(newval)){
|
|
|
+ if(![7,10,11,14].includes(oldval)&&[7,10,11,14].includes(newval)){
|
|
|
this.chartInfo.MarkersLines = ""
|
|
|
this.$refs.markerSectionRef&&this.$refs.markerSectionRef.initData(this.chartInfo||{});
|
|
|
}
|
|
@@ -189,7 +189,7 @@ export default {
|
|
|
this.initStatus();
|
|
|
|
|
|
//共用结构的类型切换可以直接画图
|
|
|
- if(![7,10,11].includes(newval)) {
|
|
|
+ if(![7,10,11,14].includes(newval)) {
|
|
|
//初始化上下限
|
|
|
this.setLimitData(this.tableData)
|
|
|
//单指标允许切换到季节图需药重新请求数据
|