| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- ${zhiqim_manager_breadcrumb("派单属性")}
- ${zhiqim_manager_content()}
- <#-- 导航栏 -->
- <div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
- <nav>
- <ul>
- <li class="z-active">派单属性</li>
- <#if ZmrPathRule.check(request, "/designerGroup.htm")><li onclick="Z.L.href('designerGroup.htm');">接单条件组</li></#if>
- <#if ZmrPathRule.check(request, "/designerGroupDispatch.htm")><li onclick="Z.L.href('designerGroupDispatch.htm');">设计师接单</li></#if>
- <#if ZmrPathRule.check(request, "/onlineLog.htm")><li onclick="Z.L.href('onlineLog.htm');">在线设计师</li></#if>
- <#if ZmrPathRule.check(request, "/workSearchLog.htm")><li onclick="Z.L.href('workSearchLog.htm');">工作日志</li></#if>
- <#if ZmrPathRule.check(request, "/desOnlineTimeLog.htm")><li onclick="Z.L.href('desOnlineTimeLog.htm');">接单时长</li></#if>
- </ul>
- <div class="z-float-left z-mg10 z-lh30">
- <form name="theForm" action="/dispatchProperty.htm">
- <select name="operatorStatus" class="z-float-left z-select z-w100" data-role="z-select" data-class="zi-bd-r-none ${zmr_color_class}" onchange="this.form.submit();">
- <option value="">全部状态</option>
- <option value="0" <#if operatorStatus == 0>selected</#if>>正常</option>
- <option value="1" <#if operatorStatus == 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>
- <div class="z-float-right z-mg-t10 z-mg-r5 z-mg-b6">
- <button class="z-button ${zmr_color_class}" onclick="Z.Location.href('/dispatchPropertyAdd.htm');"><i class="z-font z-add"></i>增加派单属性</button>
- <button class="z-button ${zmr_color_class}" onclick="Z.Location.check('/dispatchPropertyModify.htm', 'operatorCode');"><i class="z-font z-modify"></i>修改派单属性</button>
- <button class="z-button z-red" onclick="Z.Location.confirm('/dispatchPropertyDelete.htm', '确认要删除该设计师与行业关系信息?','operatorCode');"><i class="z-font z-delete"></i>删除派单属性</button>
- </div>
- <table class="z-table z-bordered z-bg-white z-pd5">
- <tr>
- <td class="z-h40 z-text-left z-bold z-px14 z-bg-white" colspan="12"> 派单属性列表</td>
- </tr>
- <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td width="3%">选择</td>
- <td width="6%">设计师</td>
- <td width="8%">所属组织</td>
- <td width="6%">主类型</td>
- <td width="8%">副类型</td>
- <td width="8%">主行业</td>
- <td width="*">副行业</td>
- <td width="5%">级别</td>
- <td width="8%">关联店铺</td>
- <td width="90">创建时间</td>
- <td width="90">更新时间</td>
- </tr>
- <#if pageResult.total() == 0>
- ${zhiqim_manager_no_record(13, "暂时没有设计师派单属性信息")}
- </#if>
- <#for item : pageResult.list()>
- <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
- <td><input name="operatorCode" id="operatorCode" data-role="z-radio" data-class="${zmr_color_class}" type="radio" value="${item.getOperatorCode()}"></td>
- <td>${item.getOperatorCode()}</td>
- <td>${ZmrOrgDao.getOrgName(request, item.getOrgId())}</td>
- <td><#if typeMap.containsKey(item.getMajorType())>${typeMap.get(item.getMajorType()).getTypeName()}</#if></td>
- <td>
- <#if Validates.isNotEmpty(item.getSecondaryTypes())>
- <#var typeList = Lists.toLongList(item.getSecondaryTypes())/>
- <#for typeId : typeList>
- <#if typeMap.containsKey(typeId)>${typeMap.get(typeId).getTypeName()}</#if>
- <#if typeList.size() - 1 != typeId_index>-</#if>
- </#for>
- </#if>
- </td>
- <td><#if industryMap.containsKey(item.getMajorIndustry())>${industryMap.get(item.getMajorIndustry()).getIndustryName()}</#if></td>
- <td>
- <#if Validates.isNotEmpty(item.getSecondaryIndustrys())>
- <#var industryList = Lists.toLongList(item.getSecondaryIndustrys())/>
- <#for industry :industryList>
- <#if industryMap.containsKey(industry)>${industryMap.get(industry).getIndustryName()}</#if>
- <#if industryList.size() - 1 != industry_index>,</#if>
- </#for>
- </#if>
- </td>
- <td>
- <#if item.getDesignerLevel()==0>普通</#if>
- <#if item.getDesignerLevel()==1>高级</#if>
- </td>
- <td>${item.getShopNick()}</td>
- <td>${item.getCreateTime()}</td>
- <td>${item.getUpdateTime()}</td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_paging(pageResult, "/dispatchProperty.htm")}
- ${zhiqim_manager_content_end()}
|