Browse Source
* commit 'eed38900f9c8ddc50f5a2da22705bbab3413ed55': REPORT-86364 服务平台设计器适配 REPORT-86364 服务平台设计器适配 REPORT-86364 服务平台设计器适配 REPORT-82895 单元格重复冻结优化 决策报表相关结尾冻结实现,界面优化 REPORT-85953 【上海理光】模板保存问题 保存的时候不允许触发预览事件bugfix/11.0
superman
2 years ago
8 changed files with 71 additions and 13 deletions
@ -0,0 +1,30 @@
|
||||
package com.fr.design.mainframe.platform; |
||||
|
||||
import com.fr.design.actions.UpdateAction; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.utils.BrowseUtils; |
||||
import com.fr.general.CloudCenter; |
||||
import com.fr.log.FineLoggerFactory; |
||||
|
||||
import java.awt.Desktop; |
||||
import java.awt.event.ActionEvent; |
||||
import java.net.URI; |
||||
|
||||
/** |
||||
* 帮助-服务平台 |
||||
* |
||||
* @author Destiny.Lin |
||||
* @version 11.0 |
||||
* created by Destiny.Lin on 2022-12-14 |
||||
*/ |
||||
public class ServicePlatformAction extends UpdateAction { |
||||
public ServicePlatformAction() { |
||||
this.setName(Toolkit.i18nText("Fine-Design_Basic_Service_Platform_Title")); |
||||
this.setSmallIcon("/com/fr/design/images/platform/platform"); |
||||
} |
||||
|
||||
@Override |
||||
public void actionPerformed(ActionEvent e) { |
||||
BrowseUtils.browser(CloudCenter.getInstance().acquireUrlByKind("service.platform")); |
||||
} |
||||
} |
After Width: | Height: | Size: 458 B |
Loading…
Reference in new issue