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
| import request from '@/utils/request'
|
| // 案例列表及详情
| export function allocationList(data) {
| return request({
| url: '/project/donateorganBase/getDonateorganBaseInfoList',
| method: 'post',
| data: data
| })
| }
| // 死亡信息修改
| export function allocationadd(data) {
| return request({
| url: '/project/donateorganBase/add',
| method: 'post',
| data: data
| })
| }
| // 死亡信息修改
| export function allocationedit(data) {
| return request({
| url: '/project/donateorganBase/edit',
| method: 'post',
| data: data
| })
| }
| // 死亡信息详情
| export function donateorganBaseinfoInfo(id) {
| return request({
| url: '/project/donateorganBase/getInfo/' + id,
| method: 'get'
| })
| }
|
|