Browse Source

禁止查询基础指标数据

xyxie 2 weeks ago
parent
commit
1fff0279b0
1 changed files with 7 additions and 0 deletions
  1. 7 0
      controllers/business_chart.go

+ 7 - 0
controllers/business_chart.go

@@ -176,6 +176,13 @@ func (this *BusinessChartController) ChartEdbDataList() {
 		return
 	}
 
+	if edbInfo.EdbType == 1 { //禁止查询基础指标的数据
+		br.Data = make([]*data_manage.EdbDataList, 0)
+		br.Ret = 200
+		br.Msg = "获取成功"
+		return
+	}
+
 	edbDataList, e := services.GetEdbInfoDataList(edbInfo)
 	if e != nil {
 		br.Msg = "获取失败"