From d4bae9745cf3c0f6eae4b76a83fda28999f96bb2 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Wed, 05 Apr 2023 19:03:18 +0800
Subject: [PATCH] 修复tab栏”关闭其他“异常的问题

---
 ruoyi-ui/src/api/system/role.js |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/ruoyi-ui/src/api/system/role.js b/ruoyi-ui/src/api/system/role.js
index fa2d613..528cd18 100644
--- a/ruoyi-ui/src/api/system/role.js
+++ b/ruoyi-ui/src/api/system/role.js
@@ -64,6 +64,7 @@
     method: 'delete'
   })
 }
+
 // 查询角色已授权用户列表
 export function allocatedUserList(query) {
   return request({
@@ -107,4 +108,12 @@
     method: 'put',
     params: data
   })
-}
\ No newline at end of file
+}
+
+// 根据角色ID查询部门树结构
+export function deptTreeSelect(roleId) {
+  return request({
+    url: '/system/role/deptTree/' + roleId,
+    method: 'get'
+  })
+}

--
Gitblit v1.9.3