| | |
| | | // 新增捐献亲属确认 |
| | | export function addRelativesconfirmation(data) { |
| | | return request({ |
| | | url: '/project/relativesconfirmation', |
| | | url: '/project/relativesconfirmation/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | |
| | | // 修改捐献亲属确认 |
| | | export function updateRelativesconfirmation(data) { |
| | | return request({ |
| | | url: '/project/relativesconfirmation', |
| | | method: 'put', |
| | | url: '/project/relativesconfirmation/edit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | // 删除捐献亲属确认 |
| | | export function delRelativesconfirmation(id) { |
| | | return request({ |
| | | url: '/project/relativesconfirmation/' + id, |
| | | method: 'delete' |
| | | url: '/project/relativesconfirmation/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |