From 9924c9951ea2645165f46a463f907afa663a380f Mon Sep 17 00:00:00 2001 From: x_z Date: Fri, 10 Feb 2023 17:39:37 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=B7=BB=E5=8A=A0=E5=AF=84=E5=94=AE=E5=BA=93?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inventory/invPreProduct.js | 25 ++ src/views/inventory/InvPreProducts.vue | 369 +++++++++++++++++++ src/views/inventory/InvPreProductsDetail.vue | 211 +++++++++++ src/views/inventory/InvProducts.vue | 4 +- src/views/inventory/InvProductsDetail.vue | 14 +- 5 files changed, 613 insertions(+), 10 deletions(-) create mode 100644 src/api/inventory/invPreProduct.js create mode 100644 src/views/inventory/InvPreProducts.vue create mode 100644 src/views/inventory/InvPreProductsDetail.vue diff --git a/src/api/inventory/invPreProduct.js b/src/api/inventory/invPreProduct.js new file mode 100644 index 00000000..ef3ae5ef --- /dev/null +++ b/src/api/inventory/invPreProduct.js @@ -0,0 +1,25 @@ +import axios from "../../utils/request"; + +export function getInvPreProduct(params) { + return axios({ + url: "/spms/inv/pre/product/filter", + method: "get", + params: params + }); +} + +export function getInvPreProductDetail(params) { + return axios({ + url: "/spms/inv/pre/product/filterDetail", + method: "get", + params: params + }); +} + +export function deleteInvPreProduct(data) { + return axios({ + url: "/spms/inv/pre/product/delete", + method: "post", + data: data + }); +} diff --git a/src/views/inventory/InvPreProducts.vue b/src/views/inventory/InvPreProducts.vue new file mode 100644 index 00000000..34ad51c0 --- /dev/null +++ b/src/views/inventory/InvPreProducts.vue @@ -0,0 +1,369 @@ + + + + + + diff --git a/src/views/inventory/InvPreProductsDetail.vue b/src/views/inventory/InvPreProductsDetail.vue new file mode 100644 index 00000000..e1ba217c --- /dev/null +++ b/src/views/inventory/InvPreProductsDetail.vue @@ -0,0 +1,211 @@ + + + + + + diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue index 717682cb..9e598ed0 100644 --- a/src/views/inventory/InvProducts.vue +++ b/src/views/inventory/InvProducts.vue @@ -173,7 +173,7 @@