diff --git a/ruoyi-admin/src/main/resources/templates/error/404.html b/ruoyi-admin/src/main/resources/templates/error/404.html
index 774a58dfd..184c67838 100644
--- a/ruoyi-admin/src/main/resources/templates/error/404.html
+++ b/ruoyi-admin/src/main/resources/templates/error/404.html
@@ -4,9 +4,9 @@
@@ -14,7 +14,7 @@
找不到网页!
对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。
-
主页
+
主页
diff --git a/ruoyi-admin/src/main/resources/templates/error/500.html b/ruoyi-admin/src/main/resources/templates/error/500.html
index f59b91b93..d5663f847 100644
--- a/ruoyi-admin/src/main/resources/templates/error/500.html
+++ b/ruoyi-admin/src/main/resources/templates/error/500.html
@@ -4,9 +4,9 @@
@@ -15,7 +15,7 @@
服务器遇到意外事件,不允许完成请求。我们抱歉。您可以返回主页面。
-
主页
+
主页
diff --git a/ruoyi-admin/src/main/resources/templates/error/business.html b/ruoyi-admin/src/main/resources/templates/error/business.html
index f47cde785..1faf08c0b 100644
--- a/ruoyi-admin/src/main/resources/templates/error/business.html
+++ b/ruoyi-admin/src/main/resources/templates/error/business.html
@@ -4,9 +4,9 @@
diff --git a/ruoyi-admin/src/main/resources/templates/error/unauth.html b/ruoyi-admin/src/main/resources/templates/error/unauth.html
index ca14e5526..46007b87b 100644
--- a/ruoyi-admin/src/main/resources/templates/error/unauth.html
+++ b/ruoyi-admin/src/main/resources/templates/error/unauth.html
@@ -4,9 +4,9 @@
RuoYi - 403
-
-
-
+
+
+
@@ -15,7 +15,7 @@
对不起,您没有访问权限,请不要进行非法操作!您可以返回主页面
-
返回主页
+
返回主页
diff --git a/ruoyi-generator/src/main/resources/vm/java/controller.java.vm b/ruoyi-generator/src/main/resources/vm/java/controller.java.vm
index 60b7f1d62..7b4bf470b 100644
--- a/ruoyi-generator/src/main/resources/vm/java/controller.java.vm
+++ b/ruoyi-generator/src/main/resources/vm/java/controller.java.vm
@@ -46,19 +46,7 @@ public class ${ClassName}Controller extends BaseController
return prefix + "/${businessName}";
}
-#if($table.tree)
- /**
- * 查询${functionName}树列表
- */
- @RequiresPermissions("${permissionPrefix}:list")
- @PostMapping("/list")
- @ResponseBody
- public List<${ClassName}> list(${ClassName} ${className})
- {
- List<${ClassName}> list = ${className}Service.select${ClassName}List(${className});
- return list;
- }
-#elseif($table.crud)
+#if($table.crud)
/**
* 查询${functionName}列表
*/
@@ -71,6 +59,18 @@ public class ${ClassName}Controller extends BaseController
List<${ClassName}> list = ${className}Service.select${ClassName}List(${className});
return getDataTable(list);
}
+#elseif($table.tree)
+ /**
+ * 查询${functionName}树列表
+ */
+ @RequiresPermissions("${permissionPrefix}:list")
+ @PostMapping("/list")
+ @ResponseBody
+ public List<${ClassName}> list(${ClassName} ${className})
+ {
+ List<${ClassName}> list = ${className}Service.select${ClassName}List(${className});
+ return list;
+ }
#end
/**