|
@@ -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"
|