74 lines
3.3 KiB
Plaintext
74 lines
3.3 KiB
Plaintext
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<#include "layout/ref_head.ftl">
|
||
|
|
<link rel="stylesheet" type="text/css" href="${asset_csspath}/index.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="layout" ui-config="autoFit:true">
|
||
|
|
<div ui-config="region:'top',showHeader:false,split:false,height:46,urlCache:true,border:false">
|
||
|
|
<#include "layout/header.ftl">
|
||
|
|
</div>
|
||
|
|
<div ui-config="region:'left',icon:'menu',title:'导航栏',split:true,width:250,minWidth:48,maxWidth:400">
|
||
|
|
<div id="leftNav" style="position: absolute;overflow: hidden;">
|
||
|
|
<div id="loginInfo" class="login-info">
|
||
|
|
<span>
|
||
|
|
<a id="linkUserAvatars" href="javascript:void(0);">
|
||
|
|
<#if userInfo.userExtInfo??&&userInfo.userExtInfo.avatars??&&userInfo.userExtInfo.avatars!="">
|
||
|
|
<img class="online" alt="${userInfo.userName}"
|
||
|
|
src="${userInfo.userExtInfo.avatars}">
|
||
|
|
<#else>
|
||
|
|
<img class="online" alt="${userInfo.userName}"
|
||
|
|
src="${asset_path}/image/avatars/${userInfo.sex}.png">
|
||
|
|
</#if>
|
||
|
|
<#if (msgCount>0)>
|
||
|
|
<label id="userMsgCount" class="msgLabel label label-danger">${msgCount}</label>
|
||
|
|
</#if>
|
||
|
|
</a>
|
||
|
|
<a id="show-shortcut" href="javascript:void(0);">
|
||
|
|
<span>
|
||
|
|
快捷导航
|
||
|
|
</span>
|
||
|
|
<i class="fa fa-angle-down"></i>
|
||
|
|
</a>
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
<div id="nav" class="nav">
|
||
|
|
<ul id="ulMenu" class="ztree"></ul>
|
||
|
|
</div>
|
||
|
|
<div class="aui-sidebar-handle"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div ui-config="region:'center',icon:'application_view_columns',showHeader:false,border:false">
|
||
|
|
<div id="tabs" ui-config="autoFit:true,tabWidth:95,enableContextMenu:true">
|
||
|
|
<div ui-config="id:'main',icon:'home',iniframe: true,title:'首页',url:'${portalUrl}',updateOnOpen:${portalUpdateOnOpen}">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div ui-config="region:'bottom',height:26,split:false,showHeader:false,border:false">
|
||
|
|
<#include "layout/bottom.ftl">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div id="shortcut" class="shortcut">
|
||
|
|
<ul>
|
||
|
|
<#list shortcut as cut>
|
||
|
|
<li onclick="toShortcut(event,this,'${cut.id}','${cut.title}','${cut.icon}','${cut.href}')">
|
||
|
|
<a href="javascript:void(0);" class="jarvismetro-tile big-cubes ${cut.bg}">
|
||
|
|
<span class="iconbox"> <i class="fa ${cut.icon} fa-4x"></i>
|
||
|
|
<span>${cut.title}
|
||
|
|
<#if cut.msgCount??&&(cut.msgCount>0)>
|
||
|
|
<span class="bg-color-red">${cut.msgCount}</span>
|
||
|
|
</#if>
|
||
|
|
</span>
|
||
|
|
</span>
|
||
|
|
</a>
|
||
|
|
</li>
|
||
|
|
</#list>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
<#include "layout/ref_script.ftl">
|
||
|
|
<script type="text/javascript" src="${asset_path}/thirdlib/CECT54.WebUI/plugins/ztree/ui.tree.core.js"></script>
|
||
|
|
<script type="text/javascript" src="${asset_path}/thirdlib/CECT54.WebUI/plugins/ztree/ui.tree.exhide.js"></script>
|
||
|
|
<script type="text/javascript" src="${asset_jspath}/jcdp/index.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|