hejianhao
7 天以前 cec75849fc7db84a681b398f544e4d3e40d7d0f7
1
2
3
4
5
6
7
8
9
10
11
import axios from '@/utils/request';
 
// 列表
export const getListData = (data) => {
    return axios.post('/api/t-strain-report/pageListProject', { ...data })
}
 
// 详情
export const getDetailData = (id) => {
    return axios.get(`/open/t-strain-report/getDetailByIdProject?id=${id}`)
}