From 5d6cf04b1f27c254b114f36e62ec4cc8326f131c Mon Sep 17 00:00:00 2001 From: wangting <675591594@qq.com> Date: 星期日, 29 九月 2024 16:57:12 +0800 Subject: [PATCH] UI授权 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/UIManagerServiceImpl.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/UIManagerServiceImpl.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/UIManagerServiceImpl.java index da050fc..73634cf 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/UIManagerServiceImpl.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/UIManagerServiceImpl.java @@ -1303,6 +1303,10 @@ )); plTabButtonVO.setButtonParams(parameterMap); } + if(Func.isNotBlank(tabButtonDO.plActionOId)){ + PLAction actionInfo = platformClientUtil.getUIService().getPLActionById(tabButtonDO.plActionOId); + plTabButtonVO.setActionName(Func.isNotEmpty(actionInfo) ? actionInfo.plName:""); + } return plTabButtonVO; } -- Gitblit v1.9.3