1
yxh
2023-07-20 935c201bdcf4adde998d46893dd0fa3eddf400bb
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
import request from '@/utils/request'
 
// 查询机构用户人员列表
export function listUser() {
  return request({
    url: '/system/user/getNickname',
    method: 'get',
  })
}
 
// 查询外部机构人员列表
export function listReportname(userType) {
  return request({
    url: '/project/donatebaseinfo/reportName/' + userType,
    method: 'get',
  })
}
 
 
// 查询机构管理列表
export function listOrganization(query) {
  return request({
    url: '/project/organization/list',
    method: 'get',
    params: query
  })
}
 
// 查询机构管理详细
export function getOrganization(id) {
  return request({
    url: '/project/organization/' + id,
    method: 'get'
  })
}
 
// 新增机构管理
export function addOrganization(data) {
  return request({
    url: '/project/organization',
    method: 'post',
    data: data
  })
}
 
// 修改机构管理
export function updateOrganization(data) {
  return request({
    url: '/project/organization',
    method: 'put',
    data: data
  })
}
 
// 删除机构管理
export function delOrganization(id) {
  return request({
    url: '/project/organization/' + id,
    method: 'delete'
  })
}
 
// 导出机构管理
export function exportOrganization(query) {
  return request({
    url: '/project/organization/export',
    method: 'get',
    params: query
  })
}
 
export function getNumberOfOrgans() {
  return request({
    url: '/numberOfOrgans',
    method: 'get'
  })
}
 
export function getOrgansOfHospital(query) {
  return request({
    url: '/project/OrgansOfHospital',
    method: 'get',
    params: query
  })
}