Browse Source
* commit '2379599733f9d472a060b10a74988293089da734': REPORT-87124 国际化设计器需要对服务平台做下隐藏 REPORT-87124 国际化设计器需要对服务平台做下隐藏 REPORT-87124 国际化设计器需要对服务平台做下隐藏 REPORT-85618 【FR设计器-移动端】组件顺序-frm模板,组件修改名称后,body-移动端-组件顺序会排到最后一位 REPORT-86364 服务平台设计器适配 REPORT-85708 FR10决策报表-设计画布内的报表块的内容显示 REPORT-85611 FR10组件复用-多组件生成的复用组件,绝对画布块缩小到500*260的尺寸限制了,但内部组件没等比例缩小persist/10.0
superman
2 years ago
8 changed files with 114 additions and 56 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