61 baris
2.6 KiB
Plaintext
61 baris
2.6 KiB
Plaintext
${zhiqim_manager_breadcrumb("在线设计师")}
|
|
${zhiqim_manager_content()}
|
|
<#-- 导航栏 -->
|
|
<div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
|
|
<nav>
|
|
<ul>
|
|
<li onclick="Z.L.href('designerManage.htm');">设计师管理</li>
|
|
<li class="z-active">在线设计师</li>
|
|
<li onclick="Z.L.href('workSearchLog.htm');">工作日志</li>
|
|
<li onclick="Z.L.href('desOnlineTimeLog.htm');">接单时长</li>
|
|
<li onclick="Z.L.href('designerReg.htm');">注册审核</li>
|
|
<li onclick="Z.L.href('virtualAccount.htm');">资金账户</li>
|
|
<li onclick="Z.L.href('accountsManage.htm');">结算管理</li>
|
|
</ul>
|
|
<div class="z-float-left z-mg10 z-lh30">
|
|
<form name="theForm" action="/onlineLog.htm">
|
|
<select name="onlineStatus" class="z-float-left z-select z-mg-r-1 zi-bd-r-none" data-role="z-select" data-class="z-blue">
|
|
<option value="-1">全部</option>
|
|
<option value="0" <#if onlineStatus == 0>selected</#if>>停止接单</option>
|
|
<option value="1" <#if onlineStatus == 1>selected</#if>>正在接单</option>
|
|
</select>
|
|
<input class="z-float-left z-input ${zmr_color_class} z-w100" name="operatorCode" value="${operatorCode}" placeholder="设计师"/>
|
|
<button class="z-float-left z-button z-w80 zi-bd-rd0 z-blue"><i class="z-font z-query"></i>查询</button>
|
|
<button class="z-float-left z-button z-mg-l10" type="button" onclick="Z.Forms.clearForm(this.form);">清空</button>
|
|
</form>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
|
|
<table class="z-table z-bordered z-bg-white z-pd6">
|
|
<tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
|
|
<td width="10%">组织</td>
|
|
<td width="10%">设计师</td>
|
|
<td width="10%">接单状态</td>
|
|
<td width="10%">未完成订单数</td>
|
|
<td width="10%">最近开启接单时间</td>
|
|
<td width="10%">最近初稿类型</td>
|
|
<td width="15%">最近初稿提交时间</td>
|
|
</tr>
|
|
<#if pageResult.size() == 0>
|
|
<tr valign="middle" class="z-text-center z-bg-white z-h40">
|
|
<td colspan="8">无数据</td>
|
|
</tr>
|
|
</#if>
|
|
<#for item : pageResult.list()>
|
|
<tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()}>
|
|
<td>${ZmrOrgDao.getOrgName(request, item.getOrgId())}</td>
|
|
<td>${item.getOperatorCode()}</td>
|
|
<td>
|
|
<#if item.getOnlineStatus()== 0>停止接单</#if>
|
|
<#if item.getOnlineStatus()== 1>正在接单</#if>
|
|
</td>
|
|
<td>${item.getOrderNum()}</td>
|
|
<td>${item.getSessionTime()}</td>
|
|
<td>${typeMap.get(item.getLastDraftType()).getTypeName()}</td>
|
|
<td>${item.getLastDraftTime()}</td>
|
|
</tr>
|
|
</#for>
|
|
</table>
|
|
${zhiqim_manager_paging(pageResult, "/onlineLog.htm")}
|
|
${zhiqim_manager_content_end()} |