| 123456789101112131415161718192021222324252627282930313233 |
- <div class="srcFileList">
- <#if pageResult.total()!= 0>
- <#for item : pageResult.list()>
- <div id="item_${item.getWorksId()}" class="item" style="width:370px;height:490px;">
- <div class="z-bg-white z-pointer" onclick="Works.doWorksShowPc('${item.getWorksId()}');">
- <#for path : Arrays.toStringArray(item.getThumbImagePath())>
- <#if path_index lt 1>
- <img src="${path}"/>
- </#if>
- </#for>
- </div>
- <input name="worksId_${item.getWorksId()}" id="worksId_${item.getWorksId()}" value="${item.getWorksId()}" type="hidden" >
- <span style="display:block;text-align:right;" class="z-pointer" onclick="doCopyItemIDInfo('${item.getWorksId()}');" title="点击复制ID号">ID:${item.getWorksId()}</span>
- </div>
- </#for>
- </div>
- <div style="width:100%;text-align:center;margin-bottom:35px;">
- <table class="z-table z-bordered fi-bd-t-none z-bg-white">
- <tr class="z-h50">
- <td><div class="z-float-right z-mg-r10">${PagingGo.toHtmlClick(pageResult, "Works.doSearchAjaxForPC")}</div></td>
- </tr>
- </table>
- </div>
- <input name="prdTypeId" id="prdTypeId" type="hidden" value="${prdTypeId}"/>
- <input name="industryId" id="industryId" type="hidden" value="${industryId}"/>
- <input name="urlParam" id="urlParam" type="hidden" value="${urlParam}"/>
- <#else>
- <div style="width:100%;text-align:center;margin-bottom:35px;">
- 无作品数据
- </div>
- </#if>
|