董国庆
6 天以前 10ffa741546c5d36b14932e4a6c17faa81e479bd
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}`)
}