yxh
yxh
2024-01-05 26c14f0c6defe02f2b6f15b498bcd454461ee7a8
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import request from '@/utils/request'
 
// 查询捐献案例器官列列表
export function listDonorcharge(query) {
  return request({
    url: '/project/donorcharge/list',
    method: 'get',
    params: query
  })
}
 
// 查询捐献案例器官列详细
export function getDonorcharge(id) {
  return request({
    url: '/project/donorcharge/getInfo/' + id,
    method: 'get'
  })
}
 
// 新增捐献案例器官列
export function addDonorcharge(data) {
  return request({
    url: '/project/donorcharge/add',
    method: 'post',
    data: data
  })
}
 
// 修改捐献案例器官列
export function updateDonorcharge(data) {
  return request({
    url: '/project/donorcharge/edit',
    method: 'post',
    data: data
  })
}
 
// 删除捐献案例器官列
export function delDonorcharge(id) {
  return request({
    url: '/project/donorcharge/remove/' + id,
    method: 'get'
  })
}
 
// 导出捐献案例器官列
export function exportDonorcharge(query) {
  return request({
    url: '/project/donorcharge/export',
    method: 'get',
    params: query
  })
}
 
 
// 查询捐献案例器官列表
export function listDonorchargeorgan(query) {
  return request({
    url: '/project/donorchargeorgan/list',
    method: 'get',
    params: query
  })
}
 
// 查询捐献案例器官详细
export function getDonorchargeorgan(id) {
  return request({
    url: '/project/donorchargeorgan/getInfo/' + id,
    method: 'get'
  })
}
 
// 新增捐献案例器官
export function addDonorchargeorgan(data) {
  return request({
    url: '/project/donorchargeorgan/add',
    method: 'post',
    data: data
  })
}
 
// 修改捐献案例器官
export function updateDonorchargeorgan(data) {
  return request({
    url: '/project/donorchargeorgan/edit',
    method: 'post',
    data: data
  })
}
 
// 删除捐献案例器官
export function delDonorchargeorgan(id) {
  return request({
    url: '/project/donorchargeorgan/remove/' + id,
    method: 'get'
  })
}
 
// 导出捐献案例器官
export function exportDonorchargeorgan(query) {
  return request({
    url: '/project/donorchargeorgan/export',
    method: 'get',
    params: query
  })
}
 
 
//新增或修改捐献器官分配
export function saveDonorchargeorgan(data) {
  return request({
    url: '/project/donorchargeorgan/saveOrUpdateDonorchargeorgan',
    method: 'post',
    data: data
  })
}