From 7cd525be98eb06c1cf9130259af26e1ddcde31b2 Mon Sep 17 00:00:00 2001 From: zyh <2066096076@qq.com> Date: Fri, 16 Jan 2026 12:40:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AC=E7=BE=A4=EF=BC=8C=E4=BD=93=E5=B0=BA?= =?UTF-8?q?=E6=B5=8B=E9=87=8F=EF=BC=8C=E4=BD=93=E5=86=B5=E8=AF=84=E5=88=86?= =?UTF-8?q?=EF=BC=8C=E4=B9=B3=E5=86=B5=E8=AF=84=E5=88=86=EF=BC=8C=E4=BF=AE?= =?UTF-8?q?=E8=B9=84=EF=BC=8C=E5=8E=BB=E5=8A=BF=E9=83=A8=E5=88=86=E6=A8=A1?= =?UTF-8?q?=E7=B3=8A=E6=9F=A5=E8=AF=A2+=E5=A4=9A=E8=80=B3=E5=8F=B7?= =?UTF-8?q?=E8=BE=93=E5=85=A5=EF=BC=8C=E6=8E=92=E5=BA=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/produce/bodyManage/body_measure.js | 9 ++++ src/api/produce/bodyManage/body_score.js | 9 ++++ src/api/produce/bodyManage/breast_rating.js | 9 ++++ src/api/produce/manage_sheep/trans_group.js | 20 ++++--- src/api/produce/other/castrate.js | 9 ++++ src/api/produce/other/fixHoof.js | 9 +++- .../produce/bodyManage/body_measure/index.vue | 50 +++++++++++++++--- .../produce/bodyManage/body_score/index.vue | 52 ++++++++++++++++--- .../bodyManage/breast_rating/index.vue | 50 +++++++++++++++--- .../manage_sheep/trans_group/index.vue | 50 +++++++++++++++--- src/views/produce/other/castrate/index.vue | 47 ++++++++++++++--- src/views/produce/other/fixHoof/index.vue | 49 ++++++++++++++--- 12 files changed, 308 insertions(+), 55 deletions(-) diff --git a/src/api/produce/bodyManage/body_measure.js b/src/api/produce/bodyManage/body_measure.js index 99226d2..1f3da3a 100644 --- a/src/api/produce/bodyManage/body_measure.js +++ b/src/api/produce/bodyManage/body_measure.js @@ -48,4 +48,13 @@ export function getSheepTypeList() { url: '/base/base/list', method: 'get' }) +} + +// 远程模糊搜索耳号 +export function searchEarNumbers(query) { + return request({ + url: '/body_measure/body_measure/search_ear_numbers', + method: 'get', + params: { query } + }) } \ No newline at end of file diff --git a/src/api/produce/bodyManage/body_score.js b/src/api/produce/bodyManage/body_score.js index 5953c19..1b1a8d9 100644 --- a/src/api/produce/bodyManage/body_score.js +++ b/src/api/produce/bodyManage/body_score.js @@ -42,3 +42,12 @@ export function delBody_score(id) { method: 'delete' }) } + +// 远程模糊搜索耳号 +export function searchEarNumbers(query) { + return request({ + url: '/body_score/body_score/search_ear_numbers', + method: 'get', + params: { query } + }) +} \ No newline at end of file diff --git a/src/api/produce/bodyManage/breast_rating.js b/src/api/produce/bodyManage/breast_rating.js index 39b6d03..79e4704 100644 --- a/src/api/produce/bodyManage/breast_rating.js +++ b/src/api/produce/bodyManage/breast_rating.js @@ -42,3 +42,12 @@ export function delBreast_rating(id) { method: 'delete' }) } + +// 远程模糊搜索耳号 +export function searchEarNumbers(query) { + return request({ + url: '/breast_rating/breast_rating/search_ear_numbers', + method: 'get', + params: { query } + }) +} \ No newline at end of file diff --git a/src/api/produce/manage_sheep/trans_group.js b/src/api/produce/manage_sheep/trans_group.js index af75f5b..432d510 100644 --- a/src/api/produce/manage_sheep/trans_group.js +++ b/src/api/produce/manage_sheep/trans_group.js @@ -50,17 +50,6 @@ export function listSheepfold() { method: 'get', }); } - - -//审批转群记录 -export function approveScTransGroup(data) { - return request({ - url: '/produce/manage_sheep/trans_group/approve', - method: 'put', - data - }) -} - // 获取所有牧场列表 export function listRanch() { return request({ @@ -68,4 +57,13 @@ export function listRanch() { method: 'get', params: { pageNum: 1, pageSize: 9999 } }); +} + +// 远程模糊搜索耳号 +export function searchEarNumbers(query) { + return request({ + url: '/produce/manage_sheep/trans_group/search_ear_numbers', + method: 'get', + params: { query } + }) } \ No newline at end of file diff --git a/src/api/produce/other/castrate.js b/src/api/produce/other/castrate.js index cf036a2..da899bf 100644 --- a/src/api/produce/other/castrate.js +++ b/src/api/produce/other/castrate.js @@ -42,3 +42,12 @@ export function delCastrate(id) { method: 'delete' }) } + +// 远程模糊搜索耳号 +export function searchEarNumbers(query) { + return request({ + url: '/produce/other/castrate/search_ear_numbers', + method: 'get', + params: { query } + }) +} \ No newline at end of file diff --git a/src/api/produce/other/fixHoof.js b/src/api/produce/other/fixHoof.js index f1f3289..b05ff0f 100644 --- a/src/api/produce/other/fixHoof.js +++ b/src/api/produce/other/fixHoof.js @@ -75,5 +75,12 @@ export function getSheepBySheepfoldId(id) { params:{ id: String(id) } }) } - +// 远程模糊搜索耳号 +export function searchEarNumbers(query) { + return request({ + url: '/produce/other/fixHoof/search_ear_numbers', + method: 'get', + params: { query } + }) +} diff --git a/src/views/produce/bodyManage/body_measure/index.vue b/src/views/produce/bodyManage/body_measure/index.vue index c191d70..e00aecf 100644 --- a/src/views/produce/bodyManage/body_measure/index.vue +++ b/src/views/produce/bodyManage/body_measure/index.vue @@ -9,9 +9,16 @@ - - + + + + + + 清空 + @@ -33,7 +40,13 @@ 重置 - +
+ 已选耳号: + + {{ tag }} + +
+ \ No newline at end of file diff --git a/src/views/produce/bodyManage/body_score/index.vue b/src/views/produce/bodyManage/body_score/index.vue index 453f0cd..4248d05 100644 --- a/src/views/produce/bodyManage/body_score/index.vue +++ b/src/views/produce/bodyManage/body_score/index.vue @@ -5,9 +5,16 @@
- - + + + + + + 清空 + @@ -24,7 +31,13 @@ 重置 - +
+ 已选耳号: + + {{ tag }} + +
{{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }} - + @@ -116,7 +129,7 @@ + \ No newline at end of file diff --git a/src/views/produce/bodyManage/breast_rating/index.vue b/src/views/produce/bodyManage/breast_rating/index.vue index aa96a91..b34bc16 100644 --- a/src/views/produce/bodyManage/breast_rating/index.vue +++ b/src/views/produce/bodyManage/breast_rating/index.vue @@ -9,9 +9,16 @@
- - + + + + + + 清空 + @@ -47,7 +54,13 @@ - +
+ 已选耳号: + + {{ tag }} + +
@@ -134,7 +147,7 @@ + \ No newline at end of file diff --git a/src/views/produce/manage_sheep/trans_group/index.vue b/src/views/produce/manage_sheep/trans_group/index.vue index 8e49415..2258375 100644 --- a/src/views/produce/manage_sheep/trans_group/index.vue +++ b/src/views/produce/manage_sheep/trans_group/index.vue @@ -5,9 +5,16 @@
- - + + + + + + 清空 + @@ -34,7 +41,13 @@ 重置 - +
+ 已选耳号: + + {{ tag }} + +
- +