view-config.json.ftl 529 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<#ibiztemplate>
TARGET=PSSYSAPP
</#ibiztemplate>
<#list app.getAllPSAppViews() as view>
<#assign num = view_index />
</#list>
{
<#list app.getAllPSAppViews() as view>
    "${view.getCodeName()?lower_case}": {
        "title": "${view.getTitle()}",
        "caption": "${view.getCaption()}",
        "viewtype": "${view.getViewType()}",
        "viewmodule": "${view.getPSAppModule().getCodeName()}",
        "viewname": "${view.getCodeName()}",
        "viewtag": "${view.getId()}"
    }<#if view_index != num>,</#if>
</#list>
}