first commit

此提交包含在:
2025-02-20 14:59:35 +08:00
父節點 d7be84fac6
當前提交 d4a3bb8ffc
共有 2541 個檔案被更改,包括 336536 行新增0 行删除
+14
查看文件
@@ -0,0 +1,14 @@
<div class="svgTemplateList">
<#for key : svgMap.keySet()>
<#var item = svgMap.get(key)/>
<div id="sel_${item.getMediaId()}" class="svgTemplateItem">
<#if item != null>
<#for bg : item.getBgList()>
<div class="showSvg">${bg.getSvgCode()}</div>
</#for>
</#if>
<div class="z-lh30 z-px16 z-color-gray">${item.getMediaId()}<button class="z-button z-purple z-operater" style="margin-left:20px;"onclick="copyMediaId('${item.getMediaId()}');">复制模板编号</button></div>
</div>
</#for>
</div>