| | |
| | | // 新增伦理审查专家意见 |
| | | export function addEthicalreviewopinions(data) { |
| | | return request({ |
| | | url: '/project/ethicalreviewopinions', |
| | | url: '/project/ethicalreviewopinions/add', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | |
| | | // 修改伦理审查专家意见 |
| | | export function updateEthicalreviewopinions(data) { |
| | | return request({ |
| | | url: '/project/ethicalreviewopinions', |
| | | method: 'put', |
| | | url: '/project/ethicalreviewopinions/edit', |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | // 删除伦理审查专家意见 |
| | | export function delEthicalreviewopinions(id) { |
| | | return request({ |
| | | url: '/project/ethicalreviewopinions/' + id, |
| | | method: 'delete' |
| | | url: '/project/ethicalreviewopinions/remove/' + id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |