CONTROL-BASE.vue#PANEL.ftl 686 字节
Newer Older
tony001's avatar
tony001 committed
1
<div class='panel-container' style="<#if ctrl.getWidth() gt 0>width: ${ctrl.getWidth()?c}px;</#if><#if ctrl.getHeight() gt 0>height: ${ctrl.getHeight()?c}px;</#if>">
tony001's avatar
tony001 committed
2
<#if ctrl.getLayoutMode()=='FLEX'>
tony001's avatar
tony001 committed
3 4 5 6 7 8 9 10 11 12 13
    <div class="app-layoutpanel" style="height:100%;display: flex;">
<@ibizindent blank=8>
<#if ctrl.getRootPSPanelItems()??>
<#list ctrl.getRootPSPanelItems() as item>
${P.getPartCode(item).code}
</#list>
</#if>
</@ibizindent>
    </div>
<#else>
    <row class="app-layoutpanel" style="height:100%;">
14 15 16 17 18 19 20 21
<@ibizindent blank=8>
<#if ctrl.getRootPSPanelItems()??>
<#list ctrl.getRootPSPanelItems() as item>
${P.getPartCode(item).code}
</#list>
</#if>
</@ibizindent>
    </row>
tony001's avatar
tony001 committed
22 23
</#if>
</div>