From de47aa371c2c3d84ce01c13fad3bf1d83d6be054 Mon Sep 17 00:00:00 2001 From: A0010407 Date: Fri, 12 Jan 2024 13:27:24 +0800 Subject: [PATCH] =?UTF-8?q?2024-1-12-1=20=E5=9F=BA=E7=A1=80=E4=BF=A1?= =?UTF-8?q?=E6=81=AF-bom=E7=BB=93=E6=9E=84=E6=9B=B4=E6=94=B9=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wms/bom/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/wms/bom/index.vue b/src/views/wms/bom/index.vue index dc7f6e92..f366da2a 100644 --- a/src/views/wms/bom/index.vue +++ b/src/views/wms/bom/index.vue @@ -83,7 +83,6 @@ { this.bomList = response.rows; @@ -566,6 +566,9 @@ export default { }, load(tree, treeNode, resolve) { + console.log("treeNode:",treeNode); + console.log("tree:",tree); + console.log("resolve:",resolve); this.queryParams.pageNum = null; this.queryParams.pageSize = null; if(tree.bomHierarchy == " " || tree.bomHierarchy == null){ @@ -589,8 +592,8 @@ export default { listBom(this.queryParams).then(response => { resolve(response.rows) }) + this.queryParams.bomCode = null; }, - }, };