wujingjing
2024-10-21 6dc8a04ea58dbcf253104504f1507997cc866ee6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { authRequest } from '/@/utils/request';
 
/**
 * @summary 获取角色与项目菜单映射产品下发菜单列表
 */
export const GetAuthRoleProjectMenuMappingAuthorizeMenuList = (params) => {
    return authRequest({
        url: '/Auth/Role/Project/Menu/Mapping/GetAuthorizeMenuList@V1.0',
        method: 'get',
        params,
    });
};
 
/**
 * @summary SetAuthRoleProjectMenuMapping
 */
export const SetAuthRoleProjectMenuMapping = (data) => {
    return authRequest({
        url: '/Auth/Role/Project/Menu/Mapping/Set@V1.0',
        method: 'post',
        data,
    });
};