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 @@ + + +