WXL
3 天以前 dc082351978a1e9f75d7a1471a0ca7ebeac552a5
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
62
63
64
65
66
67
68
69
70
71
72
import request from "@/utils/request";
 
// 案例列表及详情
export function reviewinitiateBaseInfoList(data) {
  return request({
    url: "/project/ethicalreviewinitiate/reviewinitiateBaseInfoList",
    method: "post",
    data: data
  });
}
// 伦理审查信息修改
export function ethicalreviewadd(data) {
  return request({
    url: "/project/ethicalreviewinitiate/add",
    method: "post",
    data: data
  });
}
// 伦理审查信息修改
export function ethicalreviewedit(data) {
  return request({
    url: "/project/ethicalreviewinitiate/edit",
    method: "post",
    data: data
  });
}
// 审查专家统计
export function ethicalreExpertTotal(query) {
  return request({
    url: "/project/ethicalreviewopinions/expertTotal",
    method: "get",
    params: query
  });
}
// 伦理审查信息详情
export function ethicalreviewInfo(id) {
  return request({
    url: "/project/ethicalreviewinitiate/getInfo/" + id,
    method: "get"
  });
}
// 伦理审查信息infoid查询详情
export function ethicalreviewgetInfoID(query) {
  return request({
    url: "/project/ethicalreviewinitiate/getInfoID",
    method: "get",
    params: query
  });
}
// 审查单状态变更
export function ethicalreviewreceiveStatus(id) {
  return request({
    url: "/project/ethicalreviewopinions/receiveStatus",
    method: "get"
  });
}
// 专家消息推送
export function sendNotification(data) {
  return request({
    url: "/system/dingtalk/sendNotification",
    method: "post",
    data: data
  });
}
// 短信
export function sendcall(data) {
  return request({
    url: "/sms/send",
    method: "post",
    data: data
  });
}