From 7200fb6012c6279dd8e660c0e3d0362aba549281 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Mon, 2 Sep 2024 11:32:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B7=A5=E4=BD=8D=E4=B8=8A=E4=B8=8B?= =?UTF-8?q?=E8=B4=A7=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/collect/IoSplitOperateCode.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/collect/IoSplitOperateCode.vue b/src/views/collect/IoSplitOperateCode.vue index 9eb8e671..13204f82 100644 --- a/src/views/collect/IoSplitOperateCode.vue +++ b/src/views/collect/IoSplitOperateCode.vue @@ -870,6 +870,8 @@ export default { curRow: null, //out:预出库扫码;return:预出库退回;search:预出库单查询 splitType: null, + isLinkDisabled: false, + workplaceId: null, }; }, components: { @@ -1285,6 +1287,10 @@ export default { this.splitType = this.fromSplitType } + if (this.$route.query.workplaceId != null) { + this.isLinkDisabled = true + this.workplaceId = this.$route.query.workplaceId + } }, };