41 rader
1.9 KiB
Plaintext
41 rader
1.9 KiB
Plaintext
<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 <#if item.getWorksType() == 1>bestItem</#if><#if item.getWorksType() == 3>modelItem</#if>" onclick="Works.doWorksShow('${item.getWorksId()}');">
|
||
<#for path : Arrays.toStringArray(item.getThumbImagePath())>
|
||
<#if path_index lt 1>
|
||
<img style="max-width:300px;" src="${path}"/>
|
||
</#if>
|
||
</#for>
|
||
<#if item.getWorksType() == 3>
|
||
<span class="modelItem-info z-absolute">${item.getTemplateId()}</span>
|
||
</#if>
|
||
<#if Validates.isEqual(param, "AUDIT")>
|
||
<span class="itemCtrBar z-absolute">
|
||
<button class="z-button z-small z-blue z-float-left" onclick="confirmItemAdd(event, '${item.getWorksId()}', 'yes');"><i class="z-font z-px12 z-success"></i>同意</button>
|
||
<button class="z-button z-small z-red z-float-right" onclick="cancelItemAdd(event, '${item.getWorksId()}', 'no');"><i class="z-font z-px12 z-error"></i>拒绝</button>
|
||
</span>
|
||
</#if>
|
||
</div>
|
||
<span style="display:block;text-align:right;">ID:${item.getWorksId()}</span>
|
||
</div>
|
||
</#for>
|
||
</div>
|
||
<#if Validates.isEqual(apple, "BEST")>
|
||
<!--申请精品按钮 start-->
|
||
<div class="applyEssenceBtn z-fixed" onclick="applyEssence(this);">
|
||
<span class=""><i class="z-font z-flower"></i><br>设计模板</span>
|
||
<span class="" onclick="requestBest_cancel(event);"><i class="z-font z-error"></i><br>取消选择</span>
|
||
</span>
|
||
</div>
|
||
<!--申请精品按钮 end-->
|
||
</#if>
|
||
<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>
|
||
</#if> |