1
WXL
2023-10-07 59c2e6665e5d2dcfe3516af2373f1c8a7c9e2bc2
src/api/project/donateorgan.js
@@ -68,8 +68,8 @@
// 修改捐献器官管理
export function updateDonateorgan(data) {
  return request({
    url: '/project/donateorgan',
    method: 'put',
    url: '/project/donateorgan/edit',
    method: 'post',
    data: data
  })
}
@@ -77,8 +77,8 @@
// 删除捐献器官管理
export function delDonateorgan(id) {
  return request({
    url: '/project/donateorgan/' + id,
    method: 'delete'
    url: '/project/donateorgan/remove/' + id,
    method: 'get',
  })
}