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
91
92
93
94
95
96
97
98
99
100
| import { axios } from '@/utils/request'
|
| /**
| * 获取机构树
| *
| * @author yubaoshan
| * @date 2020/4/26 12:08
| */
| export function getOrgTree (parameter) {
| return axios({
| url: '/sysOrg/tree',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 获取机构列表
| *
| * @author yubaoshan
| * @date 2020/5/11 12:59
| */
| export function getOrgList (parameter) {
| return axios({
| url: '/sysOrg/list',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 获取机构列表
| *
| * @author yubaoshan
| * @date 2020/5/11 16:17
| */
| export function getOrgPage (parameter) {
| return axios({
| url: '/sysOrg/page',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 新增机构
| *
| * @author yubaoshan
| * @date 2020/5/11 13:56
| */
| export function sysOrgAdd (parameter) {
| return axios({
| url: '/sysOrg/add',
| method: 'post',
| data: parameter
| })
| }
|
| /**
| * 编辑机构
| *
| * @author yubaoshan
| * @date 2020/5/11 13:56
| */
| export function sysOrgEdit (parameter) {
| return axios({
| url: '/sysOrg/edit',
| method: 'post',
| data: parameter
| })
| }
|
| /**
| * 删除机构
| *
| * @author yubaoshan
| * @date 2020/5/11 12:59
| */
| export function sysOrgDelete (parameter) {
| return axios({
| url: '/sysOrg/delete',
| method: 'post',
| data: parameter
| })
| }
|
| /**
| * 导出系统机构
| *
| * @author yubaoshan
| * @date 2021/5/30 12:58
| */
| export function sysOrgExport (parameter) {
| return axios({
| url: '/sysOrg/export',
| method: 'get',
| params: parameter,
| responseType: 'blob'
| })
| }
|
|