系统接口
参数
appLogoImgUrl
应用LOGO图片,必需appLogoWriteImgUrl
应用LOGO反白图片,必需appLogoLinkUrl
应用LOGO链接地址,必需welcomeTitle
登录该系统的浏览器标题,必需systemId
一个AWS系统的uuid,不必检查该系统是否被关闭,必需buttomDirectoryIds
0或多个目录IdextendMenu
扩展菜单,一个JSON串appLeftNavHtml
右侧补充的HTML片段(在用户头像区的左侧)。如在CRM应用中,提供了下载移动客户端、帮助的链接)favicon
站点图标AppAPI appApi = SDK.getAppAPI();
// 参数定义列表
Map<String, Object> params5 = new HashMap<String, Object>();
//应用LOGO图片,必填
params5.put("appLogoImgUrl", appApi.getProperty(CustomerConstant.APP_SALES, "appLogoImgUrl"));
//应用LOGO反白图片,必填
params5.put("appLogoWriteImgUrl", appApi.getProperty(CustomerConstant.APP_SALES, "appLogoWriteImgUrl"));
//应用LOGO链接地址,必填
params5.put("appLogoLinkUrl", appApi.getProperty(CustomerConstant.APP_SALES, "appLogoLinkUrl"));
//登录该系统的浏览器标题,必填
params5.put("welcomeTitle", appApi.getProperty(CustomerConstant.APP_SALES, "appWelcomeTitle"));
//一个AWS系统的uuid,不必检查该系统是否被关闭,必填
params5.put("systemId", appApi.getProperty(CustomerConstant.APP_SALES, "appSystemId"));
//0或多个目录Id,非必填
params5.put("buttomDirectoryIds", appApi.getProperty(CustomerConstant.APP_SALES, "appButtomDirectoryIds"));
//扩展菜单,一个JSON串,非必填
params5.put("extendMenu", appApi.getProperty(CustomerConstant.APP_SALES, "appExtendMenu"));
//右侧补充的HTML片段(在用户头像区的左侧)。如在应用中,提供了下载移动客户端、帮助的链接),非必填
params5.put("appLeftNavHtml", appApi.getProperty(CustomerConstant.APP_SALES, "appLeftNavHtml"));
//站点图标,非必填
params5.put("favicon", appApi.getProperty(CustomerConstant.APP_SALES, "appFavicon"));
//系统接口
list.add(new AppExtensionProfile("单应用->销售管理系统", "aslp://com.actionsoft.apps.skins.saasapp/registerApp", params5));
检查插件注册是否成功可以到应用管理-销售管理系统-资源
下查看
有关ASLP服务的详细介绍参见:https://docs.awspaas.com/reference-guide/aws-paas-plugin-development-reference-guide/plugins/aslp.html