From d75d83bd2a1f4e13634f84f8a4de1f7457187b2b Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 05 Mar 2026 14:56:13 +0800
Subject: [PATCH] feat:部门管理,删除相关处理

---
 applications/task-work-order/src/api/system/role.js |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/applications/task-work-order/src/api/system/role.js b/applications/task-work-order/src/api/system/role.js
index aaae6bb..3508caa 100644
--- a/applications/task-work-order/src/api/system/role.js
+++ b/applications/task-work-order/src/api/system/role.js
@@ -12,6 +12,14 @@
   });
 };
 
+export const getRoleListNew = (params) => {
+  return request({
+    url: '/blade-system/role/list',
+    method: 'get',
+    params,
+  });
+};
+
 export const getRoleList = ( params) => {
   return request({
     url: '/blade-system/role/getRoleList',
@@ -77,12 +85,13 @@
   });
 };
 
-export const getRoleTree = tenantId => {
+export const getRoleTree = (tenantId, sysType) => {
   return request({
     url: '/blade-system/role/tree',
     method: 'get',
     params: {
       tenantId,
+      sysType
     },
   });
 };

--
Gitblit v1.9.3