Files
2025-02-20 14:58:55 +08:00

34 sor
1.3 KiB
Plaintext

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>