From f080d9ffc2c84e31ec2bb28e54f78002c002e320 Mon Sep 17 00:00:00 2001 From: x_z Date: Mon, 24 Apr 2023 10:41:54 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=90=8C=E6=AD=A5=E8=B4=A7=E4=BD=8D=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E4=BB=A3=E7=A0=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvSpaceManage.vue | 28 ++++++++++++++++---------- src/views/system/dept/invWarehouse.vue | 5 ++++- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/src/views/inventory/InvSpaceManage.vue b/src/views/inventory/InvSpaceManage.vue index ae65222..a75c939 100644 --- a/src/views/inventory/InvSpaceManage.vue +++ b/src/views/inventory/InvSpaceManage.vue @@ -22,7 +22,6 @@ - @@ -68,10 +67,24 @@ v-if="modifySpaceVisible" > + + + + + + + + + + + + - @@ -83,12 +96,6 @@ - - - - - 启用 @@ -171,13 +178,11 @@ export default { type: null, invStorageCode: this.invInfo.invStorageCode, invWarehouseCode: this.invInfo.invWarehouseCode, + invName: this.invInfo.invName, status: 1, remark: null }, rules: { - code: [ - {required: true, message: "请输入货位编码", trigger: "blur"} - ], name: [ {required: true, message: "请输入货位名称", trigger: "blur"} ], @@ -291,6 +296,7 @@ export default { type: null, invStorageCode: this.invInfo.invStorageCode, invWarehouseCode: this.invInfo.invWarehouseCode, + invName: this.invInfo.invName, status: 1, remark: null } diff --git a/src/views/system/dept/invWarehouse.vue b/src/views/system/dept/invWarehouse.vue index 390694a..4c2ddd7 100644 --- a/src/views/system/dept/invWarehouse.vue +++ b/src/views/system/dept/invWarehouse.vue @@ -474,6 +474,7 @@ export default { currentInvInfo: { invStorageCode: null, invWarehouseCode: null, + invName: null }, sysList: [], sysSubList: [], @@ -498,7 +499,8 @@ export default { this.currentInvInfo = { invStorageCode: null, - invWarehouseCode: null + invWarehouseCode: null, + invName: null }; }, @@ -830,6 +832,7 @@ export default { this.currentInvInfo = { invStorageCode: row.parentId, invWarehouseCode: row.code, + invName: row.name, flag: row.id, page: 1 };