From f50e1f8f20d98a255044d938a7e98bfc0b18d1b0 Mon Sep 17 00:00:00 2001
From: 田源 <tianyuan@vci-tech.com>
Date: 星期五, 27 十二月 2024 16:51:46 +0800
Subject: [PATCH] 业务功能模块 管理功能模块更改菜单唯一标识以及样式 操作类型管理添加按钮图标功能 系统运行监控修改为当前在线人员信息图标

---
 Source/Client/PLTClient/src/com/vci/client/framework/rightConfig/modelConfig/ModuleConfigMainPanel.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Source/Client/PLTClient/src/com/vci/client/framework/rightConfig/modelConfig/ModuleConfigMainPanel.java b/Source/Client/PLTClient/src/com/vci/client/framework/rightConfig/modelConfig/ModuleConfigMainPanel.java
index 6d5a572..7b68673 100644
--- a/Source/Client/PLTClient/src/com/vci/client/framework/rightConfig/modelConfig/ModuleConfigMainPanel.java
+++ b/Source/Client/PLTClient/src/com/vci/client/framework/rightConfig/modelConfig/ModuleConfigMainPanel.java
@@ -141,7 +141,7 @@
 				FunctionClientDelegate funcDel = new FunctionClientDelegate(LogonApplication.getUserEntityObject());
 				if (!selectNode.isExpand()) {
 					selectNode.setExpand(true);
-					if (object instanceof FunctionObject || object.equals("modelManagmentNode") || object.equals("systemManagmentNode")) {
+					if (object instanceof FunctionObject || object.equals("business") || object.equals("system")) {
 						String parentId = "";
 						if(object instanceof FunctionObject){
 							parentId = ((FunctionObject) object).getId();
@@ -214,11 +214,11 @@
 	private void initTree(VCIBaseTreeNode rootNode, String puid) {
 		// 绠$悊鍔熻兘瀹氫箟
 		systemConstructionTree = new VCIBaseTreeNode(LocaleDisplay.getI18nString("rmip.framework.systemFunctionTree.systemFunctionModel",
-				"RMIPFramework", getLocale()), "systemManagmentNode");
+				"RMIPFramework", getLocale()), "system");
 		
 		// 涓氬姟鍔熻兘瀹氫箟
 		modelConstructionTree = new VCIBaseTreeNode(LocaleDisplay.getI18nString("rmip.framework.systemFunctionTree.businessFunctionModel",
-				"RMIPFramework", getLocale()), "modelManagmentNode");
+				"RMIPFramework", getLocale()), "business");
 		
 		// 鎿嶄綔瀹氫箟
 		operateTypeNode = new VCIBaseTreeNode(LocaleDisplay.getI18nString("rmip.framework.operateType.operateTypeModel.file",
@@ -267,7 +267,7 @@
 		if (object instanceof OperateObject|| object.equals("operateNode")) {
 			newPanel = new OperateMangePanel(object,transmitTreeObject);
 		}
-		else if (object.equals("modelManagmentNode") || object.equals("systemManagmentNode") || object instanceof FunctionObject) {
+		else if (object.equals("business") || object.equals("system") || object instanceof FunctionObject) {
 			newPanel = new ModelManagementPanel(object,transmitTreeObject, this);
 		}
 		else if (object instanceof FuncOperationObject){

--
Gitblit v1.9.3