From 020ad69527681176df777fb639a5d852ce6f68ca Mon Sep 17 00:00:00 2001 From: x_z Date: Thu, 9 Feb 2023 15:00:03 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AE=8C=E6=88=90=E5=BA=93=E5=AD=98=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvProducts.vue | 105 +++++++---- src/views/inventory/InvProductsDetail.vue | 213 ++++++++++++++++++++++ 2 files changed, 281 insertions(+), 37 deletions(-) create mode 100644 src/views/inventory/InvProductsDetail.vue diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue index 3b58627d..717682cb 100644 --- a/src/views/inventory/InvProducts.vue +++ b/src/views/inventory/InvProducts.vue @@ -3,28 +3,28 @@ - + - + - + - + - + - + - + - + + border> - + @@ -156,6 +155,20 @@ > + + + + @@ -164,13 +177,7 @@ import {findInvByUser} from "@/api/system/invSubWarehouse"; import {getInvProduct, deleteInvProduct} from "@/api/inventory/invPorduct"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {isBlank} from "@/utils/strUtil"; - -const formJson = { - site_id: "", - site_name: "", - describe: "", - ads: [], -}; +import invProductsDetail from "@/views/inventory/InvProductsDetail.vue"; export default { name: "InvProducts", @@ -201,11 +208,20 @@ export default { dialogVisible: false, fromOptions: [], showSup: false, - - + detailDialogVisible: false, + inputQuery: { + cpmctymc: null, + nameCode: null, + batchNo: null, + ggxh: null, + productionDate: null, + expireDate: null, + supId: null, + deptCode: null, + invCode: null + } }; }, - components: {}, methods: { onReset() { this.$router.push({ @@ -240,9 +256,6 @@ export default { this.filterQuery.page = val; this.getList(); }, - handleSelectionChange(val) { - this.getOrderDetails(); - }, getList() { this.loading = true; getInvProduct(this.filterQuery).then((res) => { @@ -292,8 +305,23 @@ export default { this.findMethod(value); } }, - detailDialog() { - + detailDialog(row) { + this.detailDialogVisible = true; + this.inputQuery = { + relId: row.relId, + cpmctymc: row.cpmctymc, + nameCode: row.nameCode, + batchNo: row.batchNo, + ggxh: row.ggxh, + productionDate: row.productionDate, + expireDate: row.expireDate, + supId: row.supId, + deptCode: row.deptCode, + invCode: row.invCode + } + }, + closeDetailDialog() { + this.detailDialogVisible = false; }, deleteDialog(id) { this.$confirm("此操作将永久删除此库存信息,是否继续?", "提示", { @@ -306,19 +334,22 @@ export default { }); }, deleteInvProduct(id) { - let params = {id: id}; - deleteInvProduct(params).then((res) => { - if (res.code === 20000) { - this.$message.success("删除成功!"); - this.getList(); - } else { - this.$message.error(res.message); - } - }).catch((error) => { - this.$message.error(error.message); - }); + let params = {id: id}; + deleteInvProduct(params).then((res) => { + if (res.code === 20000) { + this.$message.success("删除成功!"); + this.getList(); + } else { + this.$message.error(res.message); + } + }).catch((error) => { + this.$message.error(error.message); + }); } }, + components: { + invProductsDetail + }, mounted() { document.body.ondrop = function (event) { event.preventDefault(); diff --git a/src/views/inventory/InvProductsDetail.vue b/src/views/inventory/InvProductsDetail.vue new file mode 100644 index 00000000..7b021218 --- /dev/null +++ b/src/views/inventory/InvProductsDetail.vue @@ -0,0 +1,213 @@ + + + + + +