templateInfo.zml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <#if pageResult.total() != 0>
  2. <div id="mediaList" class="srcFileList">
  3. <#for item : pageResult.list()>
  4. <#if item_index!=0 && item_index%5==0></div></#if>
  5. <#if item_index%5==0><div class="z-clearfix"></#if>
  6. <div id="item_${item.getMediaId()}" class="item" title="${DesignTypeDao.name(item.getTypeId())}&nbsp;${Global.get(DesignIndustryCache.class).getIndustryName(item.getIndustryId())}&nbsp;${item.getIndustrySubName()}&nbsp;${item.getAttributeName()}&nbsp;${item.getKeywordName()}">
  7. <div class="z-bg-white z-pointer
  8. <#if item.getTemplateType() = 110>bestItem</#if>
  9. <#if item.getTemplateType() = 100>modelItem</#if>
  10. <#if item.getTemplateType() = 80>orderItem</#if>
  11. <#if item.getTemplateType() = 10 || item.getTemplateType() = 20>myItem</#if>
  12. <#if item.getTemplateType() = 0>temporaryItem</#if>
  13. ">
  14. <img style="max-width:300px;" src="
  15. <#if Validates.isEmpty(item.getMediaUrl())>/zinc/images/nopic.png
  16. <#else>
  17. <#if media.getMediaUrl().indexOf(",") == -1>
  18. ${item.getMediaUrl()}
  19. <#else>
  20. <#for path : Arrays.toStringArray(item.getMediaUrl())>
  21. <#if path_index lt 1>
  22. ${path}
  23. </#if>
  24. </#for>
  25. </#if>
  26. </#if>
  27. " onclick="Design.doTemplateShow('${item.getMediaId()}','${urlParam}');" />
  28. <span class="allItem-info z-absolute" onclick="Design.doTemplateShow('${item.getMediaId()}','${urlParam}');">${item.getMediaId()}</span>
  29. </div>
  30. </div>
  31. <#if item_index == (pageResult.list().size() - 1)></div></#if>
  32. </#for>
  33. </div>
  34. <div style="width:100%;text-align:center;margin-bottom:35px;">
  35. <table class="z-table z-bordered zi-bd-t-none z-bg-white">
  36. <tr class="z-h50">
  37. <td><div class="z-float-right z-mg-r10">${PagingGo.toHtmlClick(pageResult, "doTemplateSearch")}</div></td>
  38. </tr>
  39. </table>
  40. </div>
  41. <#else>
  42. <div class="z-float-left z-color-gray z-w100p z-text-center z-px20 z-mg-t20">暂无模板信息,请重新搜索</div>
  43. </#if>