Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2039f4c commit a30f200Copy full SHA for a30f200
websites/code/studygolang/src/controller/user.go
@@ -48,9 +48,9 @@ func UserHomeHandler(rw http.ResponseWriter, req *http.Request) {
48
// URI: /users
49
func UsersHandler(rw http.ResponseWriter, req *http.Request) {
50
// 获取活跃会员
51
- activeUsers := service.FindActiveUsers(0, 30)
+ activeUsers := service.FindActiveUsers(0, 36)
52
// 获取最新加入会员
53
- newUsers := service.FindNewUsers(0, 30)
+ newUsers := service.FindNewUsers(0, 36)
54
// 获取会员总数
55
total := service.CountUsers()
56
req.Form.Set(filter.CONTENT_TPL_KEY, "/template/user/users.html")
0 commit comments