web iframe结构实现

This commit is contained in:
2025-12-13 14:13:31 +08:00
parent e002f0d989
commit 1776aa2d1e
53 changed files with 3280 additions and 275 deletions

View File

@@ -107,6 +107,9 @@ public class PermissionVO extends BaseVO {
@Schema(description = "iframe URL")
private String viewIframeUrl;
@Schema(description = "所属服务platform=平台应用 bidding=招标应用 workcase=客服应用")
private String viewService;
@Schema(description = "布局")
private String viewLayout;
@@ -176,6 +179,7 @@ public class PermissionVO extends BaseVO {
dto.setType(vo.getViewType());
dto.setViewType(vo.getViewViewType());
dto.setIframeUrl(vo.getViewIframeUrl());
dto.setService(vo.getViewService());
dto.setLayout(vo.getViewLayout());
dto.setOrderNum(vo.getViewOrderNum());
dto.setDescription(vo.getViewDescription());
@@ -205,6 +209,7 @@ public class PermissionVO extends BaseVO {
vo.setViewType(dto.getType());
vo.setViewViewType(dto.getViewType());
vo.setViewIframeUrl(dto.getIframeUrl());
vo.setViewService(dto.getService());
vo.setViewLayout(dto.getLayout());
vo.setViewOrderNum(dto.getOrderNum());
vo.setViewDescription(dto.getDescription());