From eb635360fde01f6a3c34d485e979e4724aa22b16 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期二, 07 一月 2025 15:57:37 +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