yxh
2023-03-04 464c604829aee38a5acedcbd0b9d3d85eacc874d
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
import request from '@/utils/request'
 
// 查询器官分配列表
export function listOrganallocation(query) {
  return request({
    url: '/project/organallocation/list',
    method: 'get',
    params: query
  })
}
 
// 查询器官分配详细
export function getOrganallocation(id) {
  return request({
    url: '/project/organallocation/' + id,
    method: 'get'
  })
}
 
// 新增器官分配
export function addOrganallocation(data) {
  return request({
    url: '/project/organallocation',
    method: 'post',
    data: data
  })
}
 
// 修改器官分配
export function updateOrganallocation(data) {
  return request({
    url: '/project/organallocation',
    method: 'put',
    data: data
  })
}
 
// 删除器官分配
export function delOrganallocation(id) {
  return request({
    url: '/project/organallocation/' + id,
    method: 'delete'
  })
}
 
// 导出器官分配
export function exportOrganallocation(query) {
  return request({
    url: '/project/organallocation/export',
    method: 'get',
    params: query
  })
}