VIEW.vue.ftl 1.3 KB
Newer Older
1
<div class="view-container ${view.getViewType()?lower_case} ${srffilepath2(view.getCodeName())}<#if view.getPSSysCss?? && view.getPSSysCss()??> ${view.getPSSysCss().getCssName()}</#if>">
2
    <app-studioaction :viewTitle="$t(model.srfCaption)" viewName="${view.getCodeName()?lower_case}"></app-studioaction>
3
    <card class='view-card <#if !view.isShowCaptionBar()> view-no-caption</#if> <#if !view.hasPSControl('toolbar')> view-no-toolbar</#if>' :dis-hover="true" :bordered="false">
4 5 6 7 8 9 10
<#--  BEGIN:视图顶部视图消息  -->
<@ibizindent blank=8>
<#ibizinclude>
../@MACRO/View_Pos_Top_Msgs.vue.ftl
</#ibizinclude>
</@ibizindent>
<#--  END:视图顶部视图消息  -->
11
<#if view.hasPSControl('toolbar')>
12
  <#assign selfToolbarRender>
13 14 15 16 17
  <template v-if="Object.is(this.selection.id, 'form')">
      ${P.getCtrlCode('toolbar', 'CONTROL.html').code}
  </template>
  </#assign>
</#if>
18 19 20 21 22 23 24 25 26
    <#ibizinclude>
    ../@MACRO/VIEW_CAPTION_DATAINFO.vue.ftl
    </#ibizinclude>
        <div class="content-container edit-view2">
<#if view.hasPSControl('drbar')>
<@ibizindent blank=8>
    ${P.getCtrlCode('drbar', 'CONTROL.html').code}
</@ibizindent>
</#if>
27
        </div>
Mosher's avatar
Mosher committed
28 29 30
<#--  BEGIN:视图底部视图消息  -->
<@ibizindent blank=8>
<#ibizinclude>
31
../@MACRO/View_Pos_Bottom_Msgs.vue.ftl
Mosher's avatar
Mosher committed
32 33 34
</#ibizinclude>
</@ibizindent>
<#--  END:视图底部视图消息  -->
35 36
    </card>
</div>