文件
2025-02-20 14:59:35 +08:00

39 行
1.6 KiB
Plaintext

此文件含有模棱两可的 Unicode 字符
此文件含有可能会与其他字符混淆的 Unicode 字符。 如果您是想特意这样的,可以安全地忽略该警告。 使用 Escape 按钮显示他们。
<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.getMediaName()}</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">${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" onclick="doCopyItemIDInfo('${item.getMediaId()}');" title="点击复制ID号">ID${item.getMediaId()}</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>