ソースを参照

Merge branch 'banner_mark' into debug

zwxi 1 年間 前
コミット
3fabeda646
1 ファイル変更1 行追加7 行削除
  1. 1 7
      controller/public.go

+ 1 - 7
controller/public.go

@@ -459,13 +459,7 @@ func BannerList(c *gin.Context) {
 	isHomepage, _ := strconv.Atoi(c.Query("is_homepage"))
 	page, _ := strconv.Atoi(c.Query("page"))
 	limit, _ := strconv.Atoi(c.Query("limit"))
-	enable, _ := strconv.Atoi(c.Query("enable"))
-	cond := ""
-	if enable == 0 {
-		cond += " enable = 0 "
-	} else {
-		cond += " enable = 1 "
-	}
+	cond := " enable = 1 "
 
 	if isHomepage != 1 {
 		cond += " AND id <> 9999"