| | |
| | | } |
| | | } |
| | | |
| | | //页面设计相关接口 |
| | | /** |
| | | * 查询页面设计定义 |
| | | * @param pageContextOId |
| | | * @return |
| | | */ |
| | | @GetMapping( "/getPLPageDefinations") |
| | | @VciBusinessLog(operateName = "查询页面设计定义") |
| | | public BaseResult<DataGrid> getPLPageDefinations(String pageContextOId){ |
| | | try { |
| | | return BaseResult.dataGrid(uiManagerService.getPLPageDefinations(pageContextOId)); |
| | | }catch (Exception e) { |
| | | e.printStackTrace(); |
| | | String exceptionMessage = "查询页面设计定义时出现错误,原因:" + VciBaseUtil.getExceptionMessage(e); |
| | | logger.error(exceptionMessage); |
| | | return BaseResult.fail(exceptionMessage); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 根据角色获取UI/表单/按钮的权限. |
| | | * @param baseQueryObject |