Explorar el Código

新增功能位置下拉树接口

LinWuTai hace 1 año
padre
commit
1dfb8ec885

+ 7 - 10
ruoyi-admin/src/main/java/com/ruoyi/RuoYiApplication.java

@@ -16,15 +16,12 @@ public class RuoYiApplication
     {
         // System.setProperty("spring.devtools.restart.enabled", "false");
         SpringApplication.run(RuoYiApplication.class, args);
-        System.out.println("(♥◠‿◠)ノ゙  若依启动成功   ლ(´ڡ`ლ)゙  \n" +
-                " .-------.       ____     __        \n" +
-                " |  _ _   \\      \\   \\   /  /    \n" +
-                " | ( ' )  |       \\  _. /  '       \n" +
-                " |(_ o _) /        _( )_ .'         \n" +
-                " | (_,_).' __  ___(_ o _)'          \n" +
-                " |  |\\ \\  |  ||   |(_,_)'         \n" +
-                " |  | \\ `'   /|   `-'  /           \n" +
-                " |  |  \\    /  \\      /           \n" +
-                " ''-'   `'-'    `-..-'              ");
+        System.out.println(" ____    ____    ______   ____        ____    __  __  __  __      _____   __  __     \n" +
+                "/\\  _`\\ /\\  _`\\ /\\__  _\\ /\\  _`\\     /\\  _`\\ /\\ \\/\\ \\/\\ \\/\\ \\    /\\  __`\\/\\ \\/\\ \\    \n" +
+                "\\ \\ \\L\\ \\ \\ \\L\\_\\/_/\\ \\/ \\ \\ \\/\\ \\   \\ \\ \\L\\ \\ \\ \\ \\ \\ \\ `\\\\ \\   \\ \\ \\/\\ \\ \\ \\/'/'   \n" +
+                " \\ \\ ,  /\\ \\  _\\/  \\ \\ \\  \\ \\ \\ \\ \\   \\ \\ ,  /\\ \\ \\ \\ \\ \\ , ` \\   \\ \\ \\ \\ \\ \\ , <    \n" +
+                "  \\ \\ \\\\ \\\\ \\ \\/    \\_\\ \\__\\ \\ \\_\\ \\   \\ \\ \\\\ \\\\ \\ \\_\\ \\ \\ \\`\\ \\   \\ \\ \\_\\ \\ \\ \\\\`\\  \n" +
+                "   \\ \\_\\ \\_\\ \\_\\    /\\_____\\\\ \\____/    \\ \\_\\ \\_\\ \\_____\\ \\_\\ \\_\\   \\ \\_____\\ \\_\\ \\_\\\n" +
+                "    \\/_/\\/ /\\/_/    \\/_____/ \\/___/      \\/_/\\/ /\\/_____/\\/_/\\/_/    \\/_____/\\/_/\\/_/\nRFID酒店管理系统启动成功!");
     }
 }

+ 3 - 3
ruoyi-admin/src/main/java/com/ruoyi/asset/controller/TbLocationController.java

@@ -49,9 +49,9 @@ public class TbLocationController extends BaseController
         return getDataTable(list);
     }
 
-    @GetMapping("/tree")
-    public AjaxResult tree(@Parameter(name = "id") Long id) {
-        List<TbLocation> tbLocations = tbLocationService.selectTree(id);
+    @PostMapping("/tree")
+    public AjaxResult tree(@RequestBody TbLocation tbLocation) {
+        List<TbLocation> tbLocations = tbLocationService.selectTree(tbLocation);
         return success(tbLocations);
     }
 

+ 1 - 1
ruoyi-admin/src/main/java/com/ruoyi/asset/service/ITbLocationService.java

@@ -31,7 +31,7 @@ public interface ITbLocationService
      */
     public List<TbLocation> selectTbLocationList(TbLocation tbLocation);
 
-    public List<TbLocation> selectTree(Long id);
+    public List<TbLocation> selectTree(TbLocation tbLocation);
 
     public List<TreeSelect> selectTreeSelect(Long id);
 

+ 4 - 5
ruoyi-admin/src/main/java/com/ruoyi/asset/service/impl/TbLocationServiceImpl.java

@@ -53,11 +53,10 @@ public class TbLocationServiceImpl implements ITbLocationService
     }
 
     @Override
-    public List<TbLocation> selectTree(Long id) {
-        List<TbLocation> locations = new ArrayList<>();
-        if (id != null) {
-            TbLocation location = selectTbLocationById(id);
-            locations.add(location);
+    public List<TbLocation> selectTree(TbLocation tbLocation) {
+        List<TbLocation> locations;
+        if (tbLocation != null) {
+            locations = selectTbLocationList(tbLocation);
         } else {
             TbLocation location = new TbLocation();
             location.setParentId(0L);