54 linhas
2.7 KiB
Plaintext
54 linhas
2.7 KiB
Plaintext
${request.getValidateSubmitScript()}
|
|
|
|
${zhiqim_manager_breadcrumb("系统缓存")}
|
|
${zhiqim_manager_content()}
|
|
|
|
<#-- 导航 -->
|
|
<div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
|
|
<nav>
|
|
<ul>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/menu.htm")><li onclick="Z.L.href('menu.htm');">系统菜单</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/avatar.htm")><li onclick="Z.L.href('avatar.htm');">系统头像</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/config.htm")><li onclick="Z.L.href('config.htm');">系统配置</li></#if>
|
|
<li class="z-active">系统缓存</li>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/param.htm")><li onclick="Z.L.href('param.htm');">系统参数</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/paramOperator.htm")><li onclick="Z.L.href('paramOperator.htm');">操作员参数</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/themeIndex.htm")><li onclick="Z.L.href('themeIndex.htm');">首页主题</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/themeMain.htm")><li onclick="Z.L.href('themeMain.htm');">主页主题</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/keys.htm")><li onclick="Z.L.href('keys.htm');">密钥生成</li></#if>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/process.htm")><li onclick="Z.L.href('process.htm');">进程信息</li></#if>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<#-- 列表 -->
|
|
<#for server : list>
|
|
<#if server.getCacheMap().isEmpty()>
|
|
<#continue/>
|
|
</#if>
|
|
<table class="z-table z-bordered z-pd10 <#if group_index gt 0>z-mg-t10</#if> z-bg-white">
|
|
${zhiqim_manager_tr_title(4, "系统缓存["+server.getId()+"]列表")}
|
|
<tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
|
|
<td width="20%">表名</td>
|
|
<td width="*">对象</td>
|
|
<td width="330">定时器</td>
|
|
<td width="15%" class="z-text-center">操作</td>
|
|
</tr>
|
|
${zhiqim_manager_tr_no_record(group, 4, "暂时没有配置信息")}
|
|
</table>
|
|
<#for item : server.getCacheMap().keySet()>
|
|
<form method="post" onsubmit="return false;" data-role="z-call-frame">
|
|
<input name="id" type="hidden" value="${server.getId()}">
|
|
<input name="className" type="hidden" value="${item.getName()}">
|
|
<table class="z-table z-bordered zi-bd-t-none z-h60-tr z-pd10 z-lh150p" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
|
|
<tr>
|
|
<td width="20%" class="zi-samp">#{server.table().getTable(item).getTable()}</td>
|
|
<td width="*" class="zi-samp">#{item.getName()}</td>
|
|
<td width="330" class="zi-samp">#{server.getCacheMap().get(item).toString()}</td>
|
|
<td width="15%" class="z-text-center"><button type="submit" class="z-button" onclick="submitForm(this.form);">刷新缓存</button></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</#for>
|
|
</#for>
|
|
${zhiqim_manager_content_end()} |