冻胚冻精完善

This commit is contained in:
zyh
2025-12-04 16:36:38 +08:00
parent f34c2e45f1
commit 93b1f9283a
6 changed files with 683 additions and 767 deletions

View File

@@ -42,3 +42,29 @@ export function delEmbryo(id) {
method: 'delete'
})
}
// 根据供体母羊耳号回显冲胚信息(冻胚新增页面用)
export function getFlushInfoByEwe(eweNo) {
return request({
url: '/frozen/embryo/getFlushInfoByEwe/' + eweNo,
method: 'get'
})
}
// 根据母羊+等级获取数量
export function getQtyByGrade(eweNo, grade) {
return request({
url: '/frozen/embryo/getQtyByGrade',
method: 'get',
params: { eweNo, grade }
})
}
// 废弃冻胚
export function discardEmbryo(data) {
return request({
url: '/frozen/embryo/discard',
method: 'put',
data
})
}