zwxi 6 months ago
parent
commit
a5e39fa7df
2 changed files with 7 additions and 4 deletions
  1. 6 3
      controllers/data_manage/chart_classify.go
  2. 1 1
      models/data_manage/chart_classify.go

+ 6 - 3
controllers/data_manage/chart_classify.go

@@ -1119,9 +1119,12 @@ func (this *ChartClassifyController) ChartClassifyChartListV3() {
 
 	for k, item := range allNodes {
 		item.Button = data.GetChartOpButton(this.SysUser, item.SysUserId, item.HaveOperaAuth)
-		//item.Button.AddButton = false
-		//item.Button.OpButton = false
-		//item.Button.DeleteButton = false
+		if item.ChartInfoId > 0 {
+			item.Button.AddButton = false
+			item.Button.OpButton = false
+			item.Button.DeleteButton = false
+			item.Button.MoveButton = false
+		}
 		allNodes[k] = item
 	}
 

+ 1 - 1
models/data_manage/chart_classify.go

@@ -502,7 +502,7 @@ SELECT
 FROM
 	chart_info 
 WHERE
-	chart_classify_id = ? AND chart_type = 1
+	chart_classify_id = ? AND source = 1
 ORDER BY
 	sort ASC,
 	chart_classify_id ASC`