日志控制器

pull/64/head
TSQ 2021-01-05 16:08:36 +08:00
parent 5600e36f6a
commit fa246c707f
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ public class LogController {
*/
@GetResource(name="操作日志管理列表", path ="", requiredPermission = false, requiredLogin = false)
public String indexView(){
return PREFIX + "log.html";
return PREFIX + "/log.html";
}
}

View File

@ -30,7 +30,7 @@ public class LoginLogController {
*/
@GetResource(name="登陆日志管理列表" , path = "", requiredPermission = false ,requiredLogin = false)
public String indexView(){
return PREFIX + "login_log.html";
return PREFIX + "/login_log.html";
}
}