董国庆
2 天以前 06b2be3bbb48e0275fbd25624c1cce54a7cac2b1
1
2
3
4
5
6
7
8
9
10
11
import axios from '@/utils/request';
 
// 列表
export const getList = (data) => {
  return axios.post('/api/t-pedigree-chart/pageList', { ...data })
}
 
// 删除菌种库
export const deleteStrainLibrary = (params) => {
  return axios.delete('/open/t-train-library/deleteById', { params })
}