研发图纸文件管理系统-前端项目
he wei
2025-03-13 ec8d9f802eac6841165425b228ef56474636fa9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import axios from "@/assets/axios";
 
/**
 * 查询所有的权限组及其下的所有权限和用户信息
 * @returns 
 */
export const getList = () => {
  return axios({
    method: "GET",
    url: "permitGroup/getAllGroup"
  })
}
/**
 * 添加权限组
 * @returns 
 */
export const addGroup = (groupName) => {
  return axios({
    method: "GET",
    url: "permitGroup/addGroup",
    params: { groupName }
  })
}
/**
 * 删除权限组
 * @returns 
 */
export const delGroup = (groupId) => {
  return axios({
    method: "GET",
    url: "permitGroup/delGroup",
    params: { groupId }
  })
}
/**
 * 查询所有用户 列表 不分页
 * @returns 
 */
export const getUserList = () => {
  return axios({
    method: "GET",
    url: "permitGroup/getAllDocUser"
  })
}
/**
 * 查询所有用户 列表 不分页
 * @returns 
 */
export const getAllPermit = () => {
  return axios({
    method: "GET",
    url: "permitGroup/getAllPermit"
  })
}
 
/**
 * 权限组下 权限
 * @returns 
 */
export const opreatePermitToGroup = (data) => {
  return axios({
    method: "POST",
    url: "permitGroup/opreatePermitToGroup",
    data
  })
}
 
/**
 * 权限组下 用户
 * @returns 
 */
export const opreateUserToGroup = (data) => {
  return axios({
    method: "POST",
    url: "permitGroup/opreateUserToGroup",
    data
  })
}
 
/**
 * 编辑权限组名
 * @returns 
 */
export const updateGroup = (groupId, groupName) => {
  return axios({
    method: "GET",
    url: "permitGroup/updateGroup",
    params: { groupId, groupName }
  })
}