Commit 60621104 by Huang Linyu

新增排名页面,无需登录即可查看排名状况

parent 30d67e49
......@@ -30,6 +30,15 @@ public class adminUserController {
/**
* 指向登录页面
*/
@RequestMapping(value = "/ranking", method = RequestMethod.GET)
public String ranking(ModelMap model) {
model.put("success", "");
return "user/ranking";
}
/**
* 指向登录页面
*/
@RequestMapping(value = "/adminLoginGet", method = RequestMethod.GET)
public String getLoginPage(ModelMap model) {
model.put("success", "");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment