完成前端界面设计

This commit is contained in:
F嘉阳
2018-02-08 21:25:23 +08:00
parent 213cad2a74
commit f43146a590
11 changed files with 726 additions and 137 deletions

View File

@@ -25,17 +25,17 @@ public class NavController {
return "/home/home";
}
@GetMapping(value = {"/feedback"})
@GetMapping(value = {"/home/feedback"})
public String toFeedbackPage(){
return "/home/feedback";
}
@GetMapping(value = {"/about"})
@GetMapping(value = {"/home/about"})
public String toAboutPage(){
return "/home/about";
}
@GetMapping(value = {"/user"})
@GetMapping(value = {"/home/user"})
public String toUserPage(){
return "/home/user";
}