董国庆
8 天以前 0c9660562a03191d44fc779a889d3da0dc624b6d
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
import axios from '@/utils/request';
 
// 列表
export const pageList = (data) => {
    return axios.post('/api/t-clinical-trial-points/pageList', { ...data })
}
 
export const add = (data) => {
    return axios.post('/api/t-clinical-trial-points/add', { ...data })
}
export const update = (data) => {
    return axios.post('/api/t-clinical-trial-points/update', { ...data })
}
export const deleteById = (data) => {
    return axios.delete('/open/t-clinical-trial-points/deleteById', { params:data })
}
export const deleteByIds = (data) => {
    return axios.delete('/open/t-clinical-trial-points/deleteByIds', { params:data })
}
export const getDetailById = (data) => {
    return axios.get('/open/t-clinical-trial-points/getDetailById', { params:data })
}
 
//查询项目组信息
export const getDetailByUserId = (data) => {
    return axios.get('/open/t-project-team/getDetailByUserId', { params:data })
}