| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <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>
- <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>
|