1
yxh
2023-07-20 935c201bdcf4adde998d46893dd0fa3eddf400bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
  })
}