13404089107
2025-05-20 993e5fd593398926af72af660cb5ed6aba8e4e2b
1
2
3
4
5
6
7
8
9
10
11
import axios from '@/utils/request';
 
// 列表
export const getList = (data) => {
  return axios.post('/t-sampling-record/api/t-sampling-record/pageList', { ...data })
}
 
// 获取实验调度分页列表
export const getDispatchList = (data) => {
  return axios.post('/t-experiment-dispatch/api/t-experiment-dispatch/pageList', { ...data })
}