pcWorksSearchInfo.zml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <div class="srcFileList">
  2. <#if pageResult.total()!= 0>
  3. <#for item : pageResult.list()>
  4. <div id="item_${item.getWorksId()}" class="item" style="width:370px;height:490px;">
  5. <div class="z-bg-white z-pointer" onclick="Works.doWorksShowPc('${item.getWorksId()}');">
  6. <#for path : Arrays.toStringArray(item.getThumbImagePath())>
  7. <#if path_index lt 1>
  8. <img src="${path}"/>
  9. </#if>
  10. </#for>
  11. </div>
  12. <input name="worksId_${item.getWorksId()}" id="worksId_${item.getWorksId()}" value="${item.getWorksId()}" type="hidden" >
  13. <span style="display:block;text-align:right;" class="z-pointer" onclick="doCopyItemIDInfo('${item.getWorksId()}');" title="点击复制ID号">ID:${item.getWorksId()}</span>
  14. </div>
  15. </#for>
  16. </div>
  17. <div style="width:100%;text-align:center;margin-bottom:35px;">
  18. <table class="z-table z-bordered fi-bd-t-none z-bg-white">
  19. <tr class="z-h50">
  20. <td><div class="z-float-right z-mg-r10">${PagingGo.toHtmlClick(pageResult, "Works.doSearchAjaxForPC")}</div></td>
  21. </tr>
  22. </table>
  23. </div>
  24. <input name="prdTypeId" id="prdTypeId" type="hidden" value="${prdTypeId}"/>
  25. <input name="industryId" id="industryId" type="hidden" value="${industryId}"/>
  26. <input name="urlParam" id="urlParam" type="hidden" value="${urlParam}"/>
  27. <#else>
  28. <div style="width:100%;text-align:center;margin-bottom:35px;">
  29. 无作品数据
  30. </div>
  31. </#if>