| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- import { UserVO } from '@/api/system/user/types';
- import { UserQuery } from '@/api/system/user/types';
- import { AxiosPromise } from 'axios';
- import { RoleQuery, RoleVO, RoleDeptTree } from './types';
- import request from '@/utils/request';
- export const listRole = (query: RoleQuery): AxiosPromise<RoleVO[]> => {
- return request({
- url: '/system/role/list',
- method: 'get',
- params: query
- });
- };
- /**
- * 通过roleIds查询角色
- * @param roleIds
- */
- export const optionSelect = (roleIds: (number | string)[]): AxiosPromise<RoleVO[]> => {
- return request({
- url: '/system/role/optionselect?roleIds=' + roleIds,
- method: 'get'
- });
- };
- /**
- * 查询角色详细
- */
- export const getRole = (roleId: string | number): AxiosPromise<RoleVO> => {
- return request({
- url: '/system/role/' + roleId,
- method: 'get'
- });
- };
- /**
- * 新增角色
- */
- export const addRole = (data: any) => {
- return request({
- url: '/system/role',
- method: 'post',
- data: data
- });
- };
- /**
- * 修改角色
- * @param data
- */
- export const updateRole = (data: any) => {
- return request({
- url: '/system/role',
- method: 'put',
- data: data
- });
- };
- /**
- * 角色数据权限
- */
- export const dataScope = (data: any) => {
- return request({
- url: '/system/role/dataScope',
- method: 'put',
- data: data
- });
- };
- /**
- * 角色状态修改
- */
- export const changeRoleStatus = (roleId: string | number, status: string) => {
- const data = {
- roleId,
- status
- };
- return request({
- url: '/system/role/changeStatus',
- method: 'put',
- data: data
- });
- };
- /**
- * 删除角色
- */
- export const delRole = (roleId: Array<string | number> | string | number) => {
- return request({
- url: '/system/role/' + roleId,
- method: 'delete'
- });
- };
- /**
- * 查询角色已授权用户列表
- */
- export const allocatedUserList = (query: UserQuery): AxiosPromise<UserVO[]> => {
- return request({
- url: '/system/role/authUser/allocatedList',
- method: 'get',
- params: query
- });
- };
- /**
- * 查询角色未授权用户列表
- */
- export const unallocatedUserList = (query: UserQuery): AxiosPromise<UserVO[]> => {
- return request({
- url: '/system/role/authUser/unallocatedList',
- method: 'get',
- params: query
- });
- };
- /**
- * 取消用户授权角色
- */
- export const authUserCancel = (data: any) => {
- return request({
- url: '/system/role/authUser/cancel',
- method: 'put',
- data: data
- });
- };
- /**
- * 批量取消用户授权角色
- */
- export const authUserCancelAll = (data: any) => {
- return request({
- url: '/system/role/authUser/cancelAll',
- method: 'put',
- params: data
- });
- };
- /**
- * 授权用户选择
- */
- export const authUserSelectAll = (data: any) => {
- return request({
- url: '/system/role/authUser/selectAll',
- method: 'put',
- params: data
- });
- };
- // 根据角色ID查询部门树结构
- export const deptTreeSelect = (roleId: string | number): AxiosPromise<RoleDeptTree> => {
- return request({
- url: '/system/role/deptTree/' + roleId,
- method: 'get'
- });
- };
- export default {
- optionSelect,
- listRole
- };
|