WXL
2024-02-20 c0b29ee03f4f6c984f35618bfa669ba3f2ab6517
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 listDonateorganstatics(query) {
  return request({
    url: '/project/donateorganstatics/list',
    method: 'get',
    params: query
  })
}
 
// 查询捐献案例器官列详细
export function getDonateorganstatics(id) {
  return request({
    url: '/project/donateorganstatics/getInfo/' + id,
    method: 'get'
  })
}
 
// 新增捐献案例器官列
export function addDonateorganstatics(data) {
  return request({
    url: '/project/donateorganstatics/add',
    method: 'post',
    data: data
  })
}
 
// 修改捐献案例器官列
export function updateDonateorganstatics(data) {
  return request({
    url: '/project/donateorganstatics/edit',
    method: 'post',
    data: data
  })
}
 
// 删除捐献案例器官列
export function delDonateorganstatics(id) {
  return request({
    url: '/project/donateorganstatics/remove/' + id,
    method: 'get'
  })
}
 
// 导出捐献案例器官列
export function exportDonateorganstatics(query) {
  return request({
    url: '/project/donateorganstatics/export',
    method: 'get',
    params: query
  })
}