Commit 0bff8aff by guojuxing

默认数据查询修改

parent 95955186
...@@ -321,7 +321,9 @@ public class AppletCustomPageApiServiceImpl implements AppletCustomPageApiServic ...@@ -321,7 +321,9 @@ public class AppletCustomPageApiServiceImpl implements AppletCustomPageApiServic
@Override @Override
public ServiceResponse<AppletCustomPageDTO> getDefault(Integer pageType) { public ServiceResponse<AppletCustomPageDTO> getDefault(Integer pageType) {
TabAppletCustomPage record = getDefaultPage(pageType); TabAppletCustomPage record = getDefaultPage(pageType);
return ServiceResponse.success(EntityUtil.changeEntityNew(AppletCustomPageDTO.class, record)); AppletCustomPageDTO dto = EntityUtil.changeEntityNew(AppletCustomPageDTO.class, record);
dto.setComponentStr(getComponentByPageId(record.getPageId()));
return ServiceResponse.success(dto);
} }
@Override @Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment