| | |
| | | import request from '@/utils/request' |
| | | import request from "@/utils/request"; |
| | | |
| | | // 案例列表及详情 |
| | | export function reviewinitiateBaseInfoList(data) { |
| | | return request({ |
| | | url: '/project/ethicalreviewinitiate/reviewinitiateBaseInfoList', |
| | | method: 'post', |
| | | url: "/project/ethicalreviewinitiate/reviewinitiateBaseInfoList", |
| | | method: "post", |
| | | data: data |
| | | }) |
| | | }); |
| | | } |
| | | // 伦理审查信息修改 |
| | | export function ethicalreviewadd(data) { |
| | | return request({ |
| | | url: '/project/ethicalreviewinitiate/add', |
| | | method: 'post', |
| | | url: "/project/ethicalreviewinitiate/add", |
| | | method: "post", |
| | | data: data |
| | | }) |
| | | }); |
| | | } |
| | | // 伦理审查信息修改 |
| | | export function ethicalreviewedit(data) { |
| | | return request({ |
| | | url: '/project/ethicalreviewinitiate/edit', |
| | | method: 'post', |
| | | url: "/project/ethicalreviewinitiate/edit", |
| | | method: "post", |
| | | data: data |
| | | }) |
| | | }); |
| | | } |
| | | // 审查专家统计 |
| | | export function ethicalreExpertTotal(query) { |
| | | return request({ |
| | | url: '/project/ethicalreviewopinions/expertTotal', |
| | | method: 'get', |
| | | url: "/project/ethicalreviewopinions/expertTotal", |
| | | method: "get", |
| | | params: query |
| | | }) |
| | | }); |
| | | } |
| | | // 伦理审查信息详情 |
| | | export function ethicalreviewInfo(id) { |
| | | return request({ |
| | | url: '/project/ethicalreviewinitiate/getInfo/' + id, |
| | | method: 'get' |
| | | }) |
| | | 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' |
| | | }) |
| | | url: "/project/ethicalreviewopinions/receiveStatus", |
| | | method: "get" |
| | | }); |
| | | } |
| | | // // 伦理审查信息详情 |
| | | // export function ethicalreviewInfo(id) { |
| | | // return request({ |
| | | // url: '/project/ethicalreviewinitiate/getInfo/' + id, |
| | | // 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 |
| | | }); |
| | | } |