13404089107
2025-05-28 a60dc30be50598fe2d1acb42f8171ec69e37b436
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import axios from '@/utils/request';
 
// 列表
export const getList = (data) => {
  return axios.post('/api/t-pedigree-chart/pageList', { ...data })
}
 
// 新增谱系图-新增谱系图
export const add = (data) => {
  return axios.post('/api/t-pedigree-chart/addProgenitor', { ...data })
}
 
// 谱系图详情
export const getDetail = (params) => {
  return axios.get('/open/t-pedigree-chart/getDetailInfoById', { params })
}
 
// 删除菌种库
export const deleteStrainLibrary = (params) => {
  return axios.delete('/open/t-train-library/deleteById', { params })
}
 
// 新增计划数
export const addProgenitorChild = (params) => {
  return axios.post('/api/t-pedigree-chart/updateCount', { ...params })
}
 
// 祖代-母代新增菌种传代项
export const addProgenitor = (params) => {
  return axios.post('/api/t-pedigree-chart/addProgenitorChild', { ...params })
}