This commit is contained in:
2025-02-20 14:58:55 +08:00
والد 687bda5ead
کامیت d7be84fac6
1158فایلهای تغییر یافته به همراه127232 افزوده شده و 0 حذف شده
@@ -0,0 +1,22 @@
<#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>