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 {