From de89bf9c4895431fd5233cb827f5eca136d3e822 Mon Sep 17 00:00:00 2001 From: niexiting <85552560@qq.com> Date: Wed, 27 Dec 2023 13:26:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/inventoryMove/job/inventoryMoveDetail.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pages/inventoryMove/job/inventoryMoveDetail.vue b/pages/inventoryMove/job/inventoryMoveDetail.vue index 80676816..3bf224f8 100644 --- a/pages/inventoryMove/job/inventoryMoveDetail.vue +++ b/pages/inventoryMove/job/inventoryMoveDetail.vue @@ -103,7 +103,7 @@ managementList: [], businessTypeCode: '', toLocationCode: '', - toinventoryStatus: '' + toInventoryStatus: '' }; }, props: { @@ -167,23 +167,23 @@ } else if (this.businessTypeCode == "HoldToOk") { name = "隔离转合格"; this.toLocationCode = ''; - this.toinventoryStatus = 'OK'; + this.toInventoryStatus = 'OK'; } else if (this.businessTypeCode == "HoldToScrap") { name = "隔离转报废"; this.toLocationCode = 'SCRAP'; - this.toinventoryStatus = 'SCRAP'; + this.toInventoryStatus = 'SCRAP'; } else if (this.businessTypeCode == "OkToHold") { name = "合格转隔离"; this.toLocationCode = 'HOLD'; - this.toinventoryStatus = 'HOLD'; + this.toInventoryStatus = 'HOLD'; } else if (this.businessTypeCode == "OktoScrap") { name = "合格转报废"; this.toLocationCode = 'SCRAP'; - this.toinventoryStatus = 'SCRAP'; + this.toInventoryStatus = 'SCRAP'; } else if (this.businessTypeCode == "ScrapToHold") { name = "报废转隔离"; this.toLocationCode = 'HOLD'; - this.toinventoryStatus = 'HOLD'; + this.toInventoryStatus = 'HOLD'; } uni.setNavigationBarTitle({ @@ -453,7 +453,7 @@ detail.toBatch = info.batch; detail.toContainerNumber = ''; // detail.toLocationCode = this.toLocationCode; - detail.toinventoryStatus=this.toinventoryStatus; + detail.toInventoryStatus=this.toInventoryStatus; subList.push(detail) } })