干奶录入问题,干奶查询问题,断奶录入问题,断奶查询问题,死亡录入问题,死亡查询问题

This commit is contained in:
ll
2026-02-01 21:51:52 +08:00
parent df88846432
commit a2bf9b9cf9
6 changed files with 551 additions and 341 deletions

View File

@@ -43,7 +43,7 @@ export function delDeath(id) {
})
}
// 根据管理耳号查询羊只信息
// 根据耳号查询羊只信息
export function getSheepInfo(manageTags) {
return request({
url: '/sheep_death/death/sheepInfo/' + manageTags,
@@ -57,4 +57,33 @@ export function getDiseaseTree() {
url: '/sheep_death/death/disease/tree',
method: 'get'
})
}
// --- 远程搜索 API ---
// 搜索耳号
export function searchEarNo(query) {
return request({
url: '/sheep_death/death/search/earNo',
method: 'get',
params: { query }
})
}
// 搜索技术员
export function searchTechnician(query) {
return request({
url: '/sheep_death/death/search/technician',
method: 'get',
params: { query }
})
}
// 搜索处理人
export function searchHandler(query) {
return request({
url: '/sheep_death/death/search/handler',
method: 'get',
params: { query }
})
}