1
0
Ficheiros
ziqim/Yangcai365_web/manage/zview/works/presenter/pcWorksSearchInfo.zml
T
2025-02-20 14:59:35 +08:00

34 linhas
1.3 KiB
Plaintext

Este ficheiro contém caracteres Unicode ambíguos
Este ficheiro contém caracteres Unicode que podem ser confundidos com outros caracteres. Se acha que é intencional, pode ignorar este aviso com segurança. Use o botão Revelar para os mostrar.
<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>