Files
pqs-9100_client/frontend/src/api/role/role.ts

48 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-11-12 18:56:33 +08:00
import type { ResPage } from '@/api/interface'
import type { Role } from './interface'
2024-11-14 11:34:25 +08:00
import type { Function } from './../function/interface/index';
2024-10-16 11:27:17 +08:00
import { ADMIN as rePrefix } from '@/api/config/serviceName'
import http from '@/api'
/**
* @name
*/
// 获取角色列表
export const getRoleList = (params: Role.ReqRoleParams) => {
2024-11-14 11:34:25 +08:00
return http.post(`/sysRole/list`, params)
// return http.post<ResPage<Role.ResRoleList>>(`/RoleList_Post`, params)
// return http.post<ResPage<Role.ResRoleList>>(`${rePrefix}/role/list`, params)
2024-10-16 11:27:17 +08:00
}
// 新增角色
export const addRole = (params: Role.RoleBO) => {
2024-11-12 18:56:33 +08:00
return http.post(`/sysRole/add`, params)
2024-10-16 11:27:17 +08:00
}
// 编辑角色
export const editRole = (params: Role.RoleBO) => {
2024-11-14 11:34:25 +08:00
return http.put(`/sysRole/update`, params)
2024-10-16 11:27:17 +08:00
}
// 删除角色
export const deleteRole = (params: { id: string[] }) => {
2024-11-14 11:34:25 +08:00
return http.post(`/sysRole/delete`, params)
2024-10-16 11:27:17 +08:00
}
2024-11-14 11:34:25 +08:00
// 获取资源
export const getFunctionList = () => {
return http.get<Function.ResFunction>(`/sysFunction/functionTree`)
2024-10-16 11:27:17 +08:00
}
2024-11-14 11:34:25 +08:00
//获取角色id绑定的菜单
export const getRoleFunction = (params:Role.RoleBO) => {
return http.post(`/sysRole/getFunctionsByRoleId?id=${params.id}`)
}
//角色分配菜单
export const assignFunction = (params:Role.RoleBO,param:Role.RoleFunctionId) => {
return http.put(`/sysFunction/assignFunctionByRoleId`,{ roleId: params.id,functionIds:param.id })
}