import axios from '@/utils/request';
|
|
// 项目组总积分分页列表
|
export const pageList = (data) => {
|
return axios.post('/api/t-tester-other-task/pageList', { ...data })
|
}
|
|
export const add = (data) => {
|
return axios.post('/api/t-tester-other-task/add', { ...data })
|
}
|
export const update = (data) => {
|
return axios.post('/api/t-tester-other-task/update', { ...data })
|
}
|
export const deleteById = (data) => {
|
return axios.delete('/open/t-tester-other-task/deleteById', { params:data })
|
}
|
export const deleteByIds = (data) => {
|
return axios.delete('/open/t-tester-other-task/deleteByIds', { params:data })
|
}
|
export const getDetailById = (data) => {
|
return axios.get('/open/t-tester-other-task/getDetailById', { params:data })
|
}
|
//查询项目组信息
|
export const getDetailByUserId = (data) => {
|
return axios.get('/open/t-project-team/getDetailByUserId', { params:data })
|
}
|