Zhiqim Admin(简版的管理台)是从知启蒙管理台分离出来,保留系统参数表、系统菜单表、操作员、操作日志,去除组织、部门、角色等复杂权限功能,仅保留操作员独立权限功能。系统设计时保留ZmrSessionUser和ZmrOperator类,方便以后升级到知启蒙管理台。

森中灵 最后提交于2月前 修复cache显示错误,增加移动不带条件方法,增加操作日志不带说明方法
process.zml1KB
${zhiqim_manager_breadcrumb("进程信息")}
${zhiqim_manager_content()}

<script>
function doSelectorDialog(threadPid)
{
    var dialog = new Z.Dialog();
    dialog.title = "线程堆栈信息";
    dialog.url = "processThreadStack.htm?threadPid="+threadPid;
    dialog.width = 500;
    dialog.height = 360;
    dialog.fixed = true;
    dialog.execute();
}
</script>

<#-- 导航 -->
<div data-role="z-tabnav" class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
<nav>
<ul class="z-mg-r10">
    ${zhiqim_manager_tabnav("系统菜单", "/"+zhiqim_manager+"/menu.htm", true)}
    ${zhiqim_manager_tabnav("系统配置", "/"+zhiqim_manager+"/config.htm", true)}
    ${zhiqim_manager_tabnav("系统缓存", "/"+zhiqim_manager+"/cache.htm", true)}
    ${zhiqim_manager_tabnav("系统参数", "/"+zhiqim_manager+"/param.htm", true)}
    ${zhiqim_manager_tabnav("首页主题", "/"+zhiqim_manager+"/themeIndex.htm", true)}
    ${zhiqim_manager_tabnav("主页主题", "/"+zhiqim_manager+"/themeMain.htm", true)}
    ${zhiqim_manager_tabnav("密钥对", "/"+zhiqim_manager+"/keys.htm", true)}
    <li class="z-active">进程信息</li>
</ul>
<div class="z-float-right z-mg-t10 z-mg-r5">
    <button class="z-button z-w120 ${zmr_color_class}" onclick="Z.ajaxq('ZmrProcessPresenter', 'doShowProcessInfo');">查询进程信息</button>
</div>
</nav>
</div>

<#-- 显示进程信息 -->
<div id="ajaxqResult" class="z-mg-t50"></div>

${zhiqim_manager_content_end()}