Browse Source

隐藏晨报、周报

hsun 3 years ago
parent
commit
e751976fc4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      models/home.go

+ 2 - 2
models/home.go

@@ -25,8 +25,8 @@ func ListHome(userId, maxPermission, userPermission int, permissionStr string) (
 	o.Using("rddp")
 	//sql := `SELECT id,classify_name FROM classify WHERE parent_id=0 ORDER BY create_time ASC `
 
-	//暂时将双周报、月报隐藏
-	sql := `SELECT id,classify_name FROM classify WHERE parent_id=0 and classify_name not IN("双周报","月报") ORDER BY create_time ASC `
+	//暂时将双周报、月报、晨报、周报隐藏
+	sql := `SELECT id,classify_name FROM classify WHERE parent_id=0 and classify_name not IN("双周报","月报","晨报","周报") ORDER BY create_time ASC `
 	_, err = o.Raw(sql).QueryRows(&items)
 	if err != nil {
 		fmt.Println("Get classify Err:" + err.Error())