54 satır
2.2 KiB
Plaintext
54 satır
2.2 KiB
Plaintext
<script>
|
|
function doChange(theme)
|
|
{
|
|
var form = document.theForm;
|
|
form.theme.value = theme;
|
|
form.submit();
|
|
}
|
|
</script>
|
|
|
|
${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>
|
|
<#if ZmrPathRule.check(request, "/"+zhiqim_manager+"/cache.htm")><li onclick="Z.L.href('cache.htm');">系统缓存</li></#if>
|
|
<#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>
|
|
<li class="z-active">首页主题</li>
|
|
<#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>
|
|
|
|
<form name="theForm" method="post">
|
|
<input name="theme" type="hidden">
|
|
<table class="z-table zi-bd z-mg-t20 z-text-center">
|
|
<#for template : templateList>
|
|
<#if template_index % 2 == 0>
|
|
<tr class="z-h300">
|
|
</#if>
|
|
<td width="50%" align="center">
|
|
<img src="#{template[1]}" height="160"><br><br>
|
|
<#if ZmrAdminRule.check(request)>
|
|
<button class="z-button z-large" onclick="doChange('#{template[0]}');">选择该主题</button>
|
|
</#if>
|
|
</td>
|
|
<#if template_index % 2 == 1>
|
|
</tr>
|
|
</#if>
|
|
</#for>
|
|
<#if templateList.size() % 2 ==1>
|
|
<td width="50%" align="center"> </td>
|
|
</tr>
|
|
</#if>
|
|
</table>
|
|
</form>
|
|
${zhiqim_manager_content_end()} |