From 18c43123b51a1688ab4ae01fe3d171c7d92e619b Mon Sep 17 00:00:00 2001
From: wangting <wangting@vci-tech.com>
Date: 星期四, 16 一月 2025 18:19:34 +0800
Subject: [PATCH] 1、调整会话过期提示 2、流程设计器隐藏拓展按钮,隐藏右下角图标

---
 Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-tree.vue |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-tree.vue b/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-tree.vue
index 9b5b6fe..475998f 100644
--- a/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-tree.vue
+++ b/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-tree.vue
@@ -242,11 +242,17 @@
       if (parentOid != 0 && parentOid.indexOf('@vcitreesep@') > -1) {
         parentOid = parentOid.split('@vcitreesep@')[1];
       }
-      const parentBtmName = (node.level === 0) ? '' : (node.data.attributes.part.btmName || node.data.attributes.btmName);
+
+      const parentBtmName = (node.level === 0)
+        ? ''
+        : (node.data.attributes.part && node.data.attributes.part.btmname)
+        || (node.data.attributes.folder && node.data.attributes.folder.btmname)
+        || (node.data.attributes && node.data.attributes.btmname)
+        || '';
       const params = this.params;
-      let url='';debugger;
-      if(this.componentVO.bsCustQueryCLsOrUrl && this.componentVO.bsCustQueryCLsOrUrl.indexOf('/')!=-1){
-        url=this.componentVO.bsCustQueryCLsOrUrl;
+      let url='';
+      if(this.componentVO.bsDataModel && this.componentVO.bsDataModel.indexOf('/')!=-1){
+        url=this.componentVO.bsDataModel;
       }
       if (node.level === 0) {
         params.queryRoot = true;

--
Gitblit v1.9.3