| 12345678910111213141516171819202122 |
- <#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>
|