将开源版本的修改打补丁应用到商业版

This commit is contained in:
wsm
2026-04-09 19:36:52 +08:00
parent d8e3a63df1
commit 7cf7a03983
105 changed files with 18321 additions and 2386 deletions
@@ -0,0 +1,12 @@
// 1. 修改引入路径,Jeecg 使用的是 defHttp
import { defHttp } from '@/utils/http/axios';
// 根据部门+角色+密级筛选用户
export function queryDepartRoleUserPageList(params) {
return defHttp.get({
// 2. 注意:Jeecg 默认配置了 baseUrl,通常不需要写 /jeecg-boot 前缀
url: '/sys/user/queryUserRoleComponentData',
// 3. GET 请求的参数 key 是 params,而不是 data
params,
});
}