Files
ziqim/Yangcai365_design/manage/zview/des/presenter/templateCardHistorySelect.zml
T
2025-02-20 14:58:55 +08:00

23 sor
907 B
Plaintext

<#if cardList.isEmpty()>
<div class="z-w100p z-h50 z-text-center z-px18">未查询到历史模板</div>
<#else>
<script>
</script>
<div class="svgTemplateList">
<#for item : cardList>
<div id="sel_${item.getId()}" class="svgTemplateItem">
<#if item.getCardUrl() != null && item.getCardUrl() != "">
<div class="showSvg"><img src="${item.getCardUrl()}" width="240px" height="146px" /></div>
<#else>
<div class="showSvg"><img src="/zinc/images/nopic.png" width="240px" height="146px" /></div>
</#if>
<span class="templateItemBtn z-absolute z-w100p z-h100p">
<button type="button" class="z-button z-large z-blue z-mg-t30" onclick="doSelectHistoryTemplate('${item.getId()}');">选择</button>
</span>
<div class="z-lh30 z-px16 z-color-gray">${item.getId()}</div>
</div>
</#for>
</div>
</#if>