import request from '@/utils/request' // 查询人体器官获取费用列表 export function listOrgancharge(query) { return request({ url: '/project/organcharge/list', method: 'get', params: query }) } // 查询人体器官获取费用详细 export function getOrgancharge(id) { return request({ url: '/project/organcharge/getInfo/' + id, method: 'get' }) } // 新增人体器官获取费用 export function addOrgancharge(data) { return request({ url: '/project/organcharge/add', method: 'post', data: data }) } // 修改人体器官获取费用 export function updateOrgancharge(data) { return request({ url: '/project/organcharge/edit', method: 'post', data: data }) } // 删除人体器官获取费用 export function delOrgancharge(id) { return request({ url: '/project/organcharge/remove' + id, method: 'get' }) } // 导出人体器官获取费用 export function exportOrgancharge(query) { return request({ url: '/project/organcharge/export', method: 'get', params: query }) }