| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- ${zhiqim_manager_breadcrumb("简介审核")}
- ${zhiqim_manager_content()}
- <script>
- function doProfileReview(state,operatorCode){
- Z.confirm("确认" + (state == 3 ? "通过" : "退回") + "审核?", function(){
- var ajax = new Z.Ajax();
- ajax.setClassName("DesignerProfilePresenter");
- ajax.setMethodName("doProfileReview");
- ajax.addParam("state",state);
- ajax.addParam("operatorCode",operatorCode);
- ajax.setFailureAlert();
- ajax.setSuccess(function()
- {
- parent.Z.tips("审核成功");
- location.reload();
- });
- ajax.execute();
- });
- }
- </script>
- <#-- 导航 -->
- <div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
- <nav>
- <ul>
- <li onclick="Z.L.href('designerManage.htm');">设计师管理</li>
- <li onclick="Z.L.href('onlineLog.htm');">在线设计师</li>
- <li onclick="Z.L.href('workSearchLog.htm');">工作日志</li>
- <li onclick="Z.L.href('desOnlineTimeLog.htm');">接单时长</li>
- <li class="z-active">数据审核</li>
- </ul>
- </nav>
- </div>
- <#-- 列表 -->
- <div class="z-tabnav-main z-blue z-mg-b5">
- <nav>
- <ul>
- <li onclick="Z.L.href('designerReg.htm');">注册审核</li>
- <li class="z-active" >简介审核</li>
- <li onclick="Z.L.href('designerWorks.htm');">作品审核</li>
- </ul>
- </nav>
- </div>
- <table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
- <tr bgcolor="${zmr_thead_bgcolor}">
- <td width="200">设计师</td>
- <td width="*">审核内容</td>
- <td width="200">提交时间</td>
- <td width="150">操作</td>
- </tr>
- ${zhiqim_manager_tr_no_record(pageResult, 39, "暂时没有介绍信息")}
- <#for item : pageResult.list()>
- <tr>
- <td>${item.getOperatorCode()}</td>
- <td>${item.getPersonalProfile()}</td>
- <td>${Sqls.toDateTimeString(item.getAddTime())}</td>
- <td>
- <button type="button" class="z-button z-blue" onclick="doProfileReview(3,'${item.getOperatorCode()}')">通过</button>
- <button type="button" class="z-button" onclick="doProfileReview(2,'${item.getOperatorCode()}')">退回</button>
- </td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_paging(pageResult, "/designerProfile.htm")}
- ${zhiqim_manager_content_end()}
|