From 4fc1029961d1d64234cf369615395bfc8dc5e9a5 Mon Sep 17 00:00:00 2001 From: niexiting <85552560@qq.com> Date: Fri, 29 Mar 2024 10:50:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BA=93=E5=AD=98=E8=BD=AC?= =?UTF-8?q?=E7=A7=BB=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/inventoryMove/coms/comMoveRecord.vue | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/pages/inventoryMove/coms/comMoveRecord.vue b/src/pages/inventoryMove/coms/comMoveRecord.vue index 946aaced..ef6e69c2 100644 --- a/src/pages/inventoryMove/coms/comMoveRecord.vue +++ b/src/pages/inventoryMove/coms/comMoveRecord.vue @@ -22,8 +22,9 @@ + + :locationAreaTypeList="toLocationAreaTypeList" :isShowEdit='true' > @@ -161,19 +162,23 @@ } else if (this.businessTypeCode == "HoldToScrap") { this.title = "隔离转报废记录"; this.toInventoryStatus = "SCRAP" - this.toLocationCode = "SCRAP" + this.toLocationCode = "" + // this.toLocationCode = "SCRAP" } else if (this.businessTypeCode == "OkToHold") { this.title = "合格转隔离记录"; this.toInventoryStatus = "HOLD" - this.toLocationCode = "HOLD" + this.toLocationCode = "" + // this.toLocationCode = "HOLD" } else if (this.businessTypeCode == "OkToScrap") { this.title = "合格转报废记录"; this.toInventoryStatus = "SCRAP" - this.toLocationCode = "SCRAP" + this.toLocationCode = "" + // this.toLocationCode = "SCRAP" } else if (this.businessTypeCode == "ScrapToHold") { this.title = "报废转隔离记录"; this.toInventoryStatus = "HOLD" - this.toLocationCode = "HOLD" + // this.toLocationCode = "HOLD" + this.toLocationCode = "" } uni.setNavigationBarTitle({ title: this.title