默认跳转到cms首页
This commit is contained in:
parent
3f1201aa3a
commit
579faae662
|
|
@ -21,7 +21,13 @@ public class SysIndexController extends BaseController
|
||||||
{
|
{
|
||||||
@Autowired
|
@Autowired
|
||||||
private ISysMenuService menuService;
|
private ISysMenuService menuService;
|
||||||
|
// 系统CMS首页
|
||||||
|
@GetMapping({"","/"})
|
||||||
|
public String cmsindex(ModelMap mmap)
|
||||||
|
{
|
||||||
|
|
||||||
|
return "web";
|
||||||
|
}
|
||||||
// 系统首页
|
// 系统首页
|
||||||
@GetMapping("/index")
|
@GetMapping("/index")
|
||||||
public String index(ModelMap mmap)
|
public String index(ModelMap mmap)
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,7 @@ pagehelper:
|
||||||
shiro:
|
shiro:
|
||||||
user:
|
user:
|
||||||
# 登录地址
|
# 登录地址
|
||||||
loginUrl: /login
|
loginUrl: /web
|
||||||
# 权限认证失败地址
|
# 权限认证失败地址
|
||||||
unauthorizedUrl: /unauth
|
unauthorizedUrl: /unauth
|
||||||
# 首页地址
|
# 首页地址
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue