| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 业务类型下拉查询 |
| | | * @param baseQueryObject selectBtmType 选择的源对象,带分页信息 |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | @GetMapping( "/getBtmDatasByPage") |
| | | @VciBusinessLog(operateName = "业务类型下拉查询") |
| | | public BaseResult getBtmDatasByPage(BaseQueryObject baseQueryObject){ |
| | | try { |
| | | return BaseResult.dataGrid(uiManagerService.getBtmDatasByPage(baseQueryObject)); |
| | | }catch (Throwable e) { |
| | | e.printStackTrace(); |
| | | String exceptionMessage = "业务类型下拉查询时出现错误,原因:" + VciBaseUtil.getExceptionMessage(e); |
| | | logger.error(exceptionMessage); |
| | | return BaseResult.fail(exceptionMessage); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * UI定义下拉查询(templateType为UI定义时的选择对象下拉查询) |
| | | * @param baseQueryObject selectBtmType 选择的源对象,带分页信息 |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | @GetMapping( "/getUILayoutDatasByPage") |
| | | @VciBusinessLog(operateName = "UI定义下拉查询") |
| | | public BaseResult getUILayoutDatasByPage(BaseQueryObject baseQueryObject){ |
| | | try { |
| | | return BaseResult.dataGrid(uiManagerService.getUILayoutDatasByPage(baseQueryObject)); |
| | | }catch (Throwable e) { |
| | | e.printStackTrace(); |
| | | String exceptionMessage = "UI定义下拉查询时出现错误,原因:" + VciBaseUtil.getExceptionMessage(e); |
| | | logger.error(exceptionMessage); |
| | | return BaseResult.fail(exceptionMessage); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 选择模板下拉查询 |
| | | * @param baseQueryObject |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | @GetMapping( "/getPortalVIDatasByPage") |
| | | @VciBusinessLog(operateName = "选择模板下拉查询") |
| | | public BaseResult getPortalVIDatasByPage(BaseQueryObject baseQueryObject){ |
| | | try { |
| | | return BaseResult.dataGrid(uiManagerService.getPortalVIDatasByPage(baseQueryObject)); |
| | | }catch (Throwable e) { |
| | | e.printStackTrace(); |
| | | String exceptionMessage = "选择模板下拉查询时出现错误,原因:" + VciBaseUtil.getExceptionMessage(e); |
| | | logger.error(exceptionMessage); |
| | | return BaseResult.fail(exceptionMessage); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 查询模板下拉查询 |
| | | * @param baseQueryObject |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | @GetMapping( "/getQTInfoDatasByPage") |
| | | @VciBusinessLog(operateName = "查询模板下拉查询") |
| | | public BaseResult getQTInfoDatasByPage(BaseQueryObject baseQueryObject){ |
| | | try { |
| | | return BaseResult.dataGrid(uiManagerService.getQTInfoDatasByPage(baseQueryObject)); |
| | | }catch (Throwable e) { |
| | | e.printStackTrace(); |
| | | String exceptionMessage = "查询模板下拉查询时出现错误,原因:" + VciBaseUtil.getExceptionMessage(e); |
| | | logger.error(exceptionMessage); |
| | | return BaseResult.fail(exceptionMessage); |
| | | } |
| | | } |
| | | |
| | | |
| | | //页面设计下配置按钮相关接口 |
| | | /** |
| | | * 获取页签区域按钮配置信息 |