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

39 sor
1.6 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.getMediaId()}" class="item" style="width:370px;height:*;">
<div class="z-bg-white z-pointer" onclick="Works.doWorksShowPc('${item.getMediaId()}');">
<#for path : Arrays.toStringArray(item.getMediaUrl())>
<#if path_index lt 1>
<img src="${path}"/>
</#if>
</#for>
<input name="worksId_${item.getMediaId()}" id="worksId_${item.getMediaId()}" value="${item.getMediaId()}" type="hidden" >
</div>
<div>
<div>
<p style="display:block;float:left;" class="z-pointer">${item.getWidthMm()}X${item.getHeightMm()}mm</p>&nbsp;
<p style="display:block;float:left;" class="z-pointer"><#if item.getOddEven()=0>横版<#elseif item.getOddEven()=1>竖版</#if></p>
<p style="display:block;float:right;" class="z-pointer"><#if item.getTypeId()=3>P数:<#else>面数:</#if>${item.getPageValue()}</p><br/>
</div>
<br/>
<div>
<p style="display:block;float:left;" class="z-pointer">ID${item.getMediaId()}</p>
<p style="display:block;float:right;" class="z-pointer" onclick="doCopyItemIDInfo('${item.getMediaId()}');" title="点击复制ID号">复制ID</p>
</div>
</div>
</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, "doWorksSearch")}</div></td>
</tr>
</table>
</div>
<#else>
<div style="width:100%;text-align:center;margin-bottom:35px;">
无作品数据
</div>
</#if>