Zhiqim Account(前端账户管理台)是在ZhiqimManager基础上改造成用于前端注册登录的管理系统,增加组织结构和余额,开放注册组织和组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构

森中灵 最后提交于9月前 整理为组织方式和替换新的jar
org.zml2KB
${zhiqim_manager_breadcrumb("组织管理")}
${zhiqim_manager_content()}
<script>
function doAdd()
{//增加
    var dialog = new Z.Dialog();
    dialog.title = "增加组织";
    dialog.url = "orgAdd.htm";
    dialog.width = 710;
    dialog.height = 300;
    dialog.fixed = true;
    dialog.execute();
}
</script>
<#-- 导航 -->
<div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
<nav>
<ul class="z-mg-r10">
    <li class="z-active">组织管理</li>
    ${zhiqim_manager_tabnav("组织类型", "/"+zhiqim_manager+"/orgType.htm", true)}
</ul>
<div class="z-float-left z-mg10">
<form name="theForm" method="post">
    <select name="orgType" class="z-float-left z-select z-w80" data-role="z-select" data-class="zi-bd-r-none ${zmr_color_class}" data-options="maxHeight:220px;" onchange="this.form.submit();">
        <option value="">全部</option>
        <#for item : ZmrOrgTypeDao.list()>
        <option value="${item.getOrgTypeId()}" ${item.getOrgTypeId()==orgType?"selected":""}>${item.getOrgTypeName()}</option>
        </#for>
    </select>
    <input name="orgName" class="z-float-left z-input z-w200 zi-bd-r-none" value="${orgName}" maxlength="64" placeholder="组织名称" spellcheck="false">
    <button class="z-float-left z-button z-w80 zi-bd-rd0 ${zmr_color_class}"><i class="z-font z-query"></i>查询</button>
</form>
</div>
<div class="z-float-right z-mg-t10 z-mg-r5">
<#if ZmrSuperAdminRule.check(request)>
    <button class="z-button ${zmr_color_class}" onclick="doAdd();"><i class="z-font z-add"></i>增加组织</button>
</#if>
</div>
</nav>
</div>

<#-- 列表 -->
<table class="z-table z-bordered zi-h30-tr z-pd-l10 z-pd-r10 z-text-center z-bg-white">
<tr class="zi-h40" bgcolor="${zmr_thead_bgcolor}">
    <td width="50">选择</td>
    <td width="140" align="left">组织编号</td>
    <td width="*" align="left">组织名称</td>
    <td width="180">组织类型</td>
    <td width="80">组织状态</td>
    <td width="80">组织级别</td>
</tr>
${zhiqim_manager_tr_no_record(result, "暂时没有组织信息")}
<#for item : result.list()>
<tr class="z-pointer zi-h30" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
    <td><input name="orgId" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="${item.getOrgId()}"></td>
    <td align="left">${item.getOrgId()}</td>
    <td align="left">#{item.getOrgName()}</td>
    <td>${ZmrOrgTypeDao.names(item.getOrgTypes())}</td>
    <td><#if item.getOrgStatus() == 0>正常<#else><span class="z-color-red">停用</span></#if></td>
    <td>${item.getOrgLevel()}</td>
</tr>
</#for>
</table>
${zhiqim_manager_paging(result)}
${zhiqim_manager_content_end()}