38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
${zhiqim_manager_breadcrumb("未完成订单统计")}
|
|
${zhiqim_manager_content()}
|
|
<#-- 导航栏 -->
|
|
<div class="z-tabnav-main z-blue z-mg-b20">
|
|
<nav>
|
|
<ul>
|
|
<li class="z-active">未完成订单统计</li>
|
|
<li onclick="Z.Location.href('draftOrderConvert.htm');">初稿统计</li>
|
|
<#if ZmrPathRule.check(request, "/designerPerformance.htm")><li onclick="Z.Location.href('designerPerformance.htm');">设计师绩效统计</li></#if>
|
|
<#if ZmrPathRule.check(request, "/completeDesignRateStat.htm")><li onclick="Z.Location.href('completeDesignRateStat.htm');">设计师定稿率统计</li></#if>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
|
|
${zhiqim_manager_tr_title(6, "未完成订单统计列表")}
|
|
<tr bgcolor="${zmr_thead_bgcolor}">
|
|
<td width="150">设计师</td>
|
|
<td width="150">未完成总数量</td>
|
|
<td width="150">48小时内</td>
|
|
<td width="150">3-7天内</td>
|
|
<td width="150">8-30天内</td>
|
|
<td width="150">30天以上</td>
|
|
</tr>
|
|
${zhiqim_manager_tr_no_record(list, 6, "暂无数据")}
|
|
<#for item : list>
|
|
<tr>
|
|
<td>${item.getDesigner()}</td>
|
|
<td>${item.getSumCount()}</td>
|
|
<td>${item.getDayCount()}</td>
|
|
<td>${item.getWeekCount()}</td>
|
|
<td>${item.getMonthCount()}</td>
|
|
<td>${item.getOtherCount()}</td>
|
|
</tr>
|
|
</#for>
|
|
</table>
|
|
${zhiqim_manager_list(list.size())}
|
|
${zhiqim_manager_content_end()} |