diff --git a/src/api/dairyProducts/freshMilkTest/freshMilkTest.js b/src/api/dairyProducts/freshMilkTest/freshMilkTest.js new file mode 100644 index 0000000..0781458 --- /dev/null +++ b/src/api/dairyProducts/freshMilkTest/freshMilkTest.js @@ -0,0 +1,45 @@ +import request from '@/utils/request' + +// 查询鲜奶生产,成品检验记录列表 +export function listFreshMilkTest(query) { + return request({ + url: '/freshMilkTest/freshMilkTest/list', + method: 'get', + params: query + }) +} + +// 查询鲜奶生产,成品检验记录详细 +export function getFreshMilkTest(id) { + return request({ + url: '/freshMilkTest/freshMilkTest/' + id, + method: 'get' + }) +} + +// 新增鲜奶生产,成品检验记录 +export function addFreshMilkTest(data) { + return request({ + url: '/freshMilkTest/freshMilkTest', + method: 'post', + data: data + }) +} + +// 修改鲜奶生产,成品检验记录 +export function updateFreshMilkTest(data) { + return request({ + url: '/freshMilkTest/freshMilkTest', + method: 'put', + data: data + }) +} + +// 删除鲜奶生产,成品检验记录 +export function delFreshMilkTest(id) { + return request({ + url: '/freshMilkTest/freshMilkTest/' + id, + method: 'delete' + }) +} + diff --git a/src/api/produce/manage_sheep/add_sheep/add_sheep.js b/src/api/produce/manage_sheep/add_sheep.js similarity index 100% rename from src/api/produce/manage_sheep/add_sheep/add_sheep.js rename to src/api/produce/manage_sheep/add_sheep.js diff --git a/src/api/produce/manage_sheep/trans_group/trans_group.js b/src/api/produce/manage_sheep/trans_group.js similarity index 100% rename from src/api/produce/manage_sheep/trans_group/trans_group.js rename to src/api/produce/manage_sheep/trans_group.js diff --git a/src/api/produce/manage_sheep/transition_info/transition_info.js b/src/api/produce/manage_sheep/transition_info.js similarity index 100% rename from src/api/produce/manage_sheep/transition_info/transition_info.js rename to src/api/produce/manage_sheep/transition_info.js diff --git a/src/api/produce/other/castrate/castrate.js b/src/api/produce/other/castrate.js similarity index 100% rename from src/api/produce/other/castrate/castrate.js rename to src/api/produce/other/castrate.js diff --git a/src/api/produce/other/fixHoof/fixHoof.js b/src/api/produce/other/fixHoof.js similarity index 100% rename from src/api/produce/other/fixHoof/fixHoof.js rename to src/api/produce/other/fixHoof.js diff --git a/src/views/biosafety/quarantine/index.vue b/src/views/biosafety/quarantine/index.vue index 5d603c5..b0ad772 100644 --- a/src/views/biosafety/quarantine/index.vue +++ b/src/views/biosafety/quarantine/index.vue @@ -1,49 +1,42 @@ \ No newline at end of file diff --git a/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue b/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue new file mode 100644 index 0000000..4db694e --- /dev/null +++ b/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue @@ -0,0 +1,577 @@ + + + + + \ No newline at end of file diff --git a/src/views/produce/manage_sheep/add_sheep/index.vue b/src/views/produce/manage_sheep/add_sheep/index.vue index 3a8846d..753df17 100644 --- a/src/views/produce/manage_sheep/add_sheep/index.vue +++ b/src/views/produce/manage_sheep/add_sheep/index.vue @@ -121,7 +121,7 @@