import request from '@/utils/request'
|
// 查询VO
|
export function listnewEthicalreviewopinions(query) {
|
return request({
|
url: '/project/ethicalreviewopinions/listnew',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询伦理审查专家意见列表
|
export function listEthicalreviewopinions(query) {
|
return request({
|
url: '/project/ethicalreviewopinions/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询伦理审查专家意见详细
|
export function getEthicalreviewopinions(id) {
|
return request({
|
url: '/project/ethicalreviewopinions/' + id,
|
method: 'get'
|
})
|
}
|
|
// 新增伦理审查专家意见
|
export function addEthicalreviewopinions(data) {
|
return request({
|
url: '/project/ethicalreviewopinions',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改伦理审查专家意见
|
export function updateEthicalreviewopinions(data) {
|
return request({
|
url: '/project/ethicalreviewopinions',
|
method: 'put',
|
data: data
|
})
|
}
|
|
// 删除伦理审查专家意见
|
export function delEthicalreviewopinions(id) {
|
return request({
|
url: '/project/ethicalreviewopinions/' + id,
|
method: 'delete'
|
})
|
}
|
|
// 导出伦理审查专家意见
|
export function exportEthicalreviewopinions(query) {
|
return request({
|
url: '/project/ethicalreviewopinions/export',
|
method: 'get',
|
params: query
|
})
|
}
|