From f27cd4b809a41dd1ed48328e4f2f0815c159423d Mon Sep 17 00:00:00 2001 From: psh Date: Tue, 6 Aug 2024 14:34:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E9=A1=B5=E9=9D=A2=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lms/nladmin-ui/src/views/wms/hw/in/detail.js | 67 +++ lms/nladmin-ui/src/views/wms/hw/in/index.vue | 499 ++++++++++++++++++ lms/nladmin-ui/src/views/wms/hw/out/detail.js | 67 +++ lms/nladmin-ui/src/views/wms/hw/out/index.vue | 499 ++++++++++++++++++ lms/nladmin-ui/src/views/wms/ycl/in/detail.js | 67 +++ lms/nladmin-ui/src/views/wms/ycl/in/index.vue | 441 ++++++++++++++++ .../src/views/wms/ycl/out/detail.js | 67 +++ .../src/views/wms/ycl/out/index.vue | 441 ++++++++++++++++ 8 files changed, 2148 insertions(+) create mode 100644 lms/nladmin-ui/src/views/wms/hw/in/detail.js create mode 100644 lms/nladmin-ui/src/views/wms/hw/in/index.vue create mode 100644 lms/nladmin-ui/src/views/wms/hw/out/detail.js create mode 100644 lms/nladmin-ui/src/views/wms/hw/out/index.vue create mode 100644 lms/nladmin-ui/src/views/wms/ycl/in/detail.js create mode 100644 lms/nladmin-ui/src/views/wms/ycl/in/index.vue create mode 100644 lms/nladmin-ui/src/views/wms/ycl/out/detail.js create mode 100644 lms/nladmin-ui/src/views/wms/ycl/out/index.vue diff --git a/lms/nladmin-ui/src/views/wms/hw/in/detail.js b/lms/nladmin-ui/src/views/wms/hw/in/detail.js new file mode 100644 index 0000000..03750fb --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/hw/in/detail.js @@ -0,0 +1,67 @@ +import request from '@/utils/request' + +export function add(data) { + return request({ + url: 'api/report', + method: 'post', + data + }) +} + +export function del(ids) { + return request({ + url: 'api/report/', + method: 'delete', + data: ids + }) +} + +export function edit(data) { + return request({ + url: 'api/report', + method: 'put', + data + }) +} + +export function getGroup(data) { + return request({ + url: 'api/report/getGroup', + method: 'post', + data + }) +} + +export function getSupplierNameList(data) { + return request({ + url: 'api/report/getSupplierNameList', + method: 'get', + data + }) +} + +export function getProductDescriptionList(data) { + return request({ + url: 'api/report/getProductDescriptionList', + method: 'get', + data + }) +} + +export function getLotSNList(data) { + return request({ + url: 'api/report/getLotSNList', + method: 'get', + data + }) +} +export function getIngotBatchList(data) { + return request({ + url: 'api/report/getIngotBatchList', + method: 'get', + data + }) +} + +export default { add, edit, del, getGroup, getSupplierNameList, getProductDescriptionList, getLotSNList } + diff --git a/lms/nladmin-ui/src/views/wms/hw/in/index.vue b/lms/nladmin-ui/src/views/wms/hw/in/index.vue new file mode 100644 index 0000000..f31fe1b --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/hw/in/index.vue @@ -0,0 +1,499 @@ + + + + + diff --git a/lms/nladmin-ui/src/views/wms/hw/out/detail.js b/lms/nladmin-ui/src/views/wms/hw/out/detail.js new file mode 100644 index 0000000..03750fb --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/hw/out/detail.js @@ -0,0 +1,67 @@ +import request from '@/utils/request' + +export function add(data) { + return request({ + url: 'api/report', + method: 'post', + data + }) +} + +export function del(ids) { + return request({ + url: 'api/report/', + method: 'delete', + data: ids + }) +} + +export function edit(data) { + return request({ + url: 'api/report', + method: 'put', + data + }) +} + +export function getGroup(data) { + return request({ + url: 'api/report/getGroup', + method: 'post', + data + }) +} + +export function getSupplierNameList(data) { + return request({ + url: 'api/report/getSupplierNameList', + method: 'get', + data + }) +} + +export function getProductDescriptionList(data) { + return request({ + url: 'api/report/getProductDescriptionList', + method: 'get', + data + }) +} + +export function getLotSNList(data) { + return request({ + url: 'api/report/getLotSNList', + method: 'get', + data + }) +} +export function getIngotBatchList(data) { + return request({ + url: 'api/report/getIngotBatchList', + method: 'get', + data + }) +} + +export default { add, edit, del, getGroup, getSupplierNameList, getProductDescriptionList, getLotSNList } + diff --git a/lms/nladmin-ui/src/views/wms/hw/out/index.vue b/lms/nladmin-ui/src/views/wms/hw/out/index.vue new file mode 100644 index 0000000..7639ff9 --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/hw/out/index.vue @@ -0,0 +1,499 @@ + + + + + diff --git a/lms/nladmin-ui/src/views/wms/ycl/in/detail.js b/lms/nladmin-ui/src/views/wms/ycl/in/detail.js new file mode 100644 index 0000000..101c563 --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/ycl/in/detail.js @@ -0,0 +1,67 @@ +import request from '@/utils/request' + +export function add(data) { + return request({ + url: 'api/report', + method: 'post', + data + }) +} + +export function del(ids) { + return request({ + url: 'api/report/', + method: 'delete', + data: ids + }) +} + +export function edit(data) { + return request({ + url: 'api/report', + method: 'put', + data + }) +} + +export function getGroup(data) { + return request({ + url: 'api/report/getGroup', + method: 'post', + data + }) +} + +export function getSupplierNameList(data) { + return request({ + url: 'api/report/getSupplierNameList', + method: 'get', + data + }) +} + +export function getProductDescriptionList(data) { + return request({ + url: 'api/report/getProductDescriptionList', + method: 'get', + data + }) +} + +export function getLotSNList(data) { + return request({ + url: 'api/report/getLotSNList', + method: 'get', + data + }) +} + +export function getIngotBatchList(data) { + return request({ + url: 'api/report/getIngotBatchList', + method: 'get', + data + }) +} + +export default { add, edit, del, getGroup, getSupplierNameList, getProductDescriptionList, getLotSNList, getIngotBatchList } diff --git a/lms/nladmin-ui/src/views/wms/ycl/in/index.vue b/lms/nladmin-ui/src/views/wms/ycl/in/index.vue new file mode 100644 index 0000000..40549c9 --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/ycl/in/index.vue @@ -0,0 +1,441 @@ + + + + + diff --git a/lms/nladmin-ui/src/views/wms/ycl/out/detail.js b/lms/nladmin-ui/src/views/wms/ycl/out/detail.js new file mode 100644 index 0000000..101c563 --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/ycl/out/detail.js @@ -0,0 +1,67 @@ +import request from '@/utils/request' + +export function add(data) { + return request({ + url: 'api/report', + method: 'post', + data + }) +} + +export function del(ids) { + return request({ + url: 'api/report/', + method: 'delete', + data: ids + }) +} + +export function edit(data) { + return request({ + url: 'api/report', + method: 'put', + data + }) +} + +export function getGroup(data) { + return request({ + url: 'api/report/getGroup', + method: 'post', + data + }) +} + +export function getSupplierNameList(data) { + return request({ + url: 'api/report/getSupplierNameList', + method: 'get', + data + }) +} + +export function getProductDescriptionList(data) { + return request({ + url: 'api/report/getProductDescriptionList', + method: 'get', + data + }) +} + +export function getLotSNList(data) { + return request({ + url: 'api/report/getLotSNList', + method: 'get', + data + }) +} + +export function getIngotBatchList(data) { + return request({ + url: 'api/report/getIngotBatchList', + method: 'get', + data + }) +} + +export default { add, edit, del, getGroup, getSupplierNameList, getProductDescriptionList, getLotSNList, getIngotBatchList } diff --git a/lms/nladmin-ui/src/views/wms/ycl/out/index.vue b/lms/nladmin-ui/src/views/wms/ycl/out/index.vue new file mode 100644 index 0000000..7f45815 --- /dev/null +++ b/lms/nladmin-ui/src/views/wms/ycl/out/index.vue @@ -0,0 +1,441 @@ + + + + +