提交 1ddb820a 编写于 作者: Shine-zwj's avatar Shine-zwj

update:更新

上级 d28d4f31
...@@ -102,16 +102,26 @@ import UIService from '@/uiservice/ui-service'; ...@@ -102,16 +102,26 @@ import UIService from '@/uiservice/ui-service';
public appUIService:UIService = new UIService(); public appUIService:UIService = new UIService();
</#if> </#if>
/**
* 视图布局顶级成员名称
*
* @public
* @memberof ${srfclassname('${item.name}')}Base
*/
public rootLayoutDetailNames: string[] = <@compress single_line=true>[
<#if ctrl.getRootPSPanelItems?? && ctrl.getRootPSPanelItems()??>
<#list ctrl.getRootPSPanelItems() as panelItem>
'${panelItem.name}'<#if panelItem_has_next>,</#if>
</#list>
</#if>
];</@compress>
<#assign panelItems = ctrl.getAllPSPanelItems() /> <#assign panelItems = ctrl.getAllPSPanelItems() />
<#assign type='ITEMLAYOUT' /> <#assign type='ITEMLAYOUT' />
<#assign item=ctrl /> <#assign item=ctrl />
<@getLayoutItemModel panelItems type view item/> <@getLayoutItemModel panelItems type view item/>
<#assign rootPanelItems /> <@initLayout item/>
<#if ctrl.getRootPSPanelItems?? && ctrl.getRootPSPanelItems()??>
<#assign rootPanelItems=ctrl.getRootPSPanelItems() />
</#if>
<@initLayout rootPanelItems item/>
/** /**
......
...@@ -320,7 +320,7 @@ this.$verify.testCond(_${item.getDstModelField()?lower_case}, "${item.getCondOp( ...@@ -320,7 +320,7 @@ this.$verify.testCond(_${item.getDstModelField()?lower_case}, "${item.getCondOp(
} }
</#macro> </#macro>
<#macro initLayout rootPanelItems item > <#macro initLayout item>
/** /**
* 布局面板是否加载 * 布局面板是否加载
* *
...@@ -345,20 +345,6 @@ this.$verify.testCond(_${item.getDstModelField()?lower_case}, "${item.getCondOp( ...@@ -345,20 +345,6 @@ this.$verify.testCond(_${item.getDstModelField()?lower_case}, "${item.getCondOp(
*/ */
public layoutModelDetails:any = {}; public layoutModelDetails:any = {};
/**
* 视图布局顶级成员名称
*
* @public
* @memberof ${srfclassname('${item.name}')}Base
*/
public rootLayoutDetailNames: string[] = <@compress single_line=true>[
<#if rootPanelItems?? && rootPanelItems != ''>
<#list rootPanelItems as panelItem>
'${panelItem.name}'<#if panelItem_has_next>,</#if>
</#list>
</#if>
];</@compress>
/** /**
* 初始化布局 * 初始化布局
* *
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册