diff --git a/src/api/inventory/invPorduct.js b/src/api/inventory/invPorduct.js new file mode 100644 index 00000000..ccccecc3 --- /dev/null +++ b/src/api/inventory/invPorduct.js @@ -0,0 +1,25 @@ +import axios from "../../utils/request"; + +export function getInvProduct(params) { + return axios({ + url: "/spms/inv/product/filter", + method: "get", + params: params + }); +} + +export function getInvProductDetail(params) { + return axios({ + url: "/spms/inv/product/filterDetail", + method: "get", + params: params + }); +} + +export function deleteInvProduct(data) { + return axios({ + url: "/spms/inv/product/delete", + method: "post", + data: data + }); +} diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue new file mode 100644 index 00000000..23c43553 --- /dev/null +++ b/src/views/inventory/InvProducts.vue @@ -0,0 +1,427 @@ + + + + +