From 1c7f65318ebb688e5cfc72b4806ace7f489e85be Mon Sep 17 00:00:00 2001 From: xiejun <xj@2023> Date: 星期二, 10 十月 2023 18:14:22 +0800 Subject: [PATCH] 生命周期执行更改报错问题解决 --- Source/UBCS-WEB/src/components/Master/MasterTree.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/UBCS-WEB/src/components/Master/MasterTree.vue b/Source/UBCS-WEB/src/components/Master/MasterTree.vue index eb35b74..735ac38 100644 --- a/Source/UBCS-WEB/src/components/Master/MasterTree.vue +++ b/Source/UBCS-WEB/src/components/Master/MasterTree.vue @@ -97,7 +97,7 @@ } } }).catch(res => { - console.log(res) + // console.log(res) this.$message.error(res) }); }, @@ -168,8 +168,9 @@ //鏍戠偣鍑讳簨浠� async nodeClick(data) { try { - console.log(data) + // console.log(data) this.TreeValue=data.label.split(" ")[0].trim(); + console.log('TreeValue',this.TreeValue) this.$emit('TreeValue',this.TreeValue) this.nodeClickList = data; this.tableHeadDataFateher = [] -- Gitblit v1.9.3