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