From 6b06d7b96097ec2b009cf8387a65c9851d128766 Mon Sep 17 00:00:00 2001 From: x_z Date: Thu, 27 Oct 2022 18:22:22 +0800 Subject: [PATCH] =?UTF-8?q?1.=E8=B4=A7=E4=BD=8D=E8=A1=A8=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=88=86=E7=B1=BB=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 10 +++++++++- src/views/inventory/InvSpaceManage.vue | 27 ++++++++++++++++++++++---- 2 files changed, 32 insertions(+), 5 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index fd7f3a5..5ae62e6 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1030,7 +1030,6 @@ export const asyncRouterMap = [ authRule: ["inv/stockOrderInvSearch"] } }, - { path: "invStatistics", component: invStatistics, @@ -1040,6 +1039,15 @@ export const asyncRouterMap = [ authRule: ["invManage/invStatistics"] } }, + { + path: "invStatistics", + component: invStatistics, + name: "货物摆放", + icon: "", + meta: { + authRule: ["invManage/invStatistics"] + } + }, ] }, { diff --git a/src/views/inventory/InvSpaceManage.vue b/src/views/inventory/InvSpaceManage.vue index 0e33259..9baf232 100644 --- a/src/views/inventory/InvSpaceManage.vue +++ b/src/views/inventory/InvSpaceManage.vue @@ -23,6 +23,7 @@ + - 备注: + 货位分类: - + @@ -115,6 +116,18 @@ + + + 备注: + + + + + + + +
提交 @@ -178,6 +191,7 @@ export default { id: null, code: null, name: null, + type: null, invStorageCode: this.invInfo.invStorageCode, invWarehouseCode: this.invInfo.invWarehouseCode, status: 1, @@ -300,6 +314,7 @@ export default { id: null, code: null, name: null, + type: null, invStorageCode: this.invInfo.invStorageCode, invWarehouseCode: this.invInfo.invWarehouseCode, status: 1, @@ -311,7 +326,11 @@ export default { if (valid) { saveSpace(this.formData, this.formName).then((res) => { if (res.code === 20000) { - this.$message.success("新增成功"); + if ("add" === this.formName) { + this.$message.success("新增成功"); + } else { + this.$message.success("保存成功"); + } this.getList(); this.modifySpaceVisible = false; } else {