Browse Source

修复插件更新图标消失问题

zhanglei
dimengzhe 3 years ago
parent
commit
0f37e2ee4f
  1. 9
      anrui-portal/anrui-portal-biz/src/main/java/com/yxt/anrui/portal/biz/appsubsetversion/AppSubsetVersionRest.java

9
anrui-portal/anrui-portal-biz/src/main/java/com/yxt/anrui/portal/biz/appsubsetversion/AppSubsetVersionRest.java

@ -166,7 +166,14 @@ public class AppSubsetVersionRest implements AppSubsetVersionFeign {
appSubsetVersionOneDto.setModulePluginName("");
}
appSubsetVersionOneDto.setAppName(dto.getAppName());
appSubsetVersionOneDto.setIconUrl(dto.getIconUrl());
if (StringUtils.isNotBlank(dto.getIconUrl())) {
if (dto.getIconUrl().contains(fileUploadComponent.getUrlPrefix())) {
appSubsetVersionOneDto.setIconUrl(dto.getIconUrl().replace(fileUploadComponent.getUrlPrefix(), ""));
} else {
appSubsetVersionOneDto.setIconUrl(dto.getIconUrl());
}
}
// appSubsetVersionOneDto.setIconUrl(dto.getIconUrl());
appSubsetVersionOneDto.setUpgradeInfo(dto.getUpgradeInfo());
appSubsetVersionOneDto.setType(dto.getType());
appSubsetVersionOneDto.setSourceAction(dto.getSourceAction());

Loading…
Cancel
Save