From 0d0a3f08c8380e6ad4e107d2c5e8bd44747d66ec Mon Sep 17 00:00:00 2001 From: ll <1079863556@qq.com> Date: Mon, 21 Jul 2025 10:17:18 +0800 Subject: [PATCH] =?UTF-8?q?=E9=B2=9C=E5=A5=B6=E6=A3=80=E9=AA=8C=E8=AE=B0?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../freshMilkTest/freshMilkTest.js | 44 ++ .../freshMilkTest/freshMilkTest/index.vue | 434 ++++++++++++++++++ 2 files changed, 478 insertions(+) create mode 100644 src/api/dairyProducts/freshMilkTest/freshMilkTest.js create mode 100644 src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue diff --git a/src/api/dairyProducts/freshMilkTest/freshMilkTest.js b/src/api/dairyProducts/freshMilkTest/freshMilkTest.js new file mode 100644 index 0000000..53036f3 --- /dev/null +++ b/src/api/dairyProducts/freshMilkTest/freshMilkTest.js @@ -0,0 +1,44 @@ +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/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue b/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue new file mode 100644 index 0000000..9d36fb3 --- /dev/null +++ b/src/views/dairyProducts/freshMilkTest/freshMilkTest/index.vue @@ -0,0 +1,434 @@ + + +