From 5479422958ae31a18da17d40a49c83d5b50ae758 Mon Sep 17 00:00:00 2001 From: yinq Date: Fri, 12 Jan 2024 11:33:50 +0800 Subject: [PATCH] =?UTF-8?q?update=20-=20=E5=8F=91=E6=B3=A1=E6=B3=A8?= =?UTF-8?q?=E6=96=99=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/report/lastShotRecord.js | 44 +++ src/views/report/lastShotRecord/index.vue | 371 ++++++++++++++++++++++ 2 files changed, 415 insertions(+) create mode 100644 src/api/report/lastShotRecord.js create mode 100644 src/views/report/lastShotRecord/index.vue diff --git a/src/api/report/lastShotRecord.js b/src/api/report/lastShotRecord.js new file mode 100644 index 0000000..e9c5add --- /dev/null +++ b/src/api/report/lastShotRecord.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询箱体发泡注料记录报表列表 +export function listLastShotRecord(query) { + return request({ + url: '/report/lastShotRecord/list', + method: 'get', + params: query + }) +} + +// 查询箱体发泡注料记录报表详细 +export function getLastShotRecord(objId) { + return request({ + url: '/report/lastShotRecord/' + objId, + method: 'get' + }) +} + +// 新增箱体发泡注料记录报表 +export function addLastShotRecord(data) { + return request({ + url: '/report/lastShotRecord', + method: 'post', + data: data + }) +} + +// 修改箱体发泡注料记录报表 +export function updateLastShotRecord(data) { + return request({ + url: '/report/lastShotRecord', + method: 'put', + data: data + }) +} + +// 删除箱体发泡注料记录报表 +export function delLastShotRecord(objId) { + return request({ + url: '/report/lastShotRecord/' + objId, + method: 'delete' + }) +} diff --git a/src/views/report/lastShotRecord/index.vue b/src/views/report/lastShotRecord/index.vue new file mode 100644 index 0000000..468f130 --- /dev/null +++ b/src/views/report/lastShotRecord/index.vue @@ -0,0 +1,371 @@ + + +