Showing
2 changed files
with
3 additions
and
3 deletions
@@ -41,7 +41,7 @@ module.exports = function (app) { | @@ -41,7 +41,7 @@ module.exports = function (app) { | ||
41 | base.use('/servers', servers.routes(), servers.allowedMethods()); | 41 | base.use('/servers', servers.routes(), servers.allowedMethods()); |
42 | base.use('/monitor', monitor.routes(), monitor.allowedMethods()); | 42 | base.use('/monitor', monitor.routes(), monitor.allowedMethods()); |
43 | base.use('/users', users.routes(), users.allowedMethods()); | 43 | base.use('/users', users.routes(), users.allowedMethods()); |
44 | - base.use('/hotfix', hotfix.routes(), hotfix.allowedMethods()); | 44 | + // base.use('/hotfix', hotfix.routes(), hotfix.allowedMethods()); |
45 | base.use('/operation', operationLog.routes(), operationLog.allowedMethods()); | 45 | base.use('/operation', operationLog.routes(), operationLog.allowedMethods()); |
46 | base.use('/page_cache', pageCache.routes(), pageCache.allowedMethods()); | 46 | base.use('/page_cache', pageCache.routes(), pageCache.allowedMethods()); |
47 | base.use('/cdn_cache', cdnCache.routes(), cdnCache.allowedMethods()); | 47 | base.use('/cdn_cache', cdnCache.routes(), cdnCache.allowedMethods()); |
@@ -14,12 +14,12 @@ | @@ -14,12 +14,12 @@ | ||
14 | <ul class="nav nav-pills nav-stacked nav-menu"> | 14 | <ul class="nav nav-pills nav-stacked nav-menu"> |
15 | <li class="active"><a href="/projects"><i class="fa fa-home"></i> <span>Dashboard</span></a></li> | 15 | <li class="active"><a href="/projects"><i class="fa fa-home"></i> <span>Dashboard</span></a></li> |
16 | <li><a href="/projects"><i class="glyphicon glyphicon-th"></i> <span>项目</span></a></li> | 16 | <li><a href="/projects"><i class="glyphicon glyphicon-th"></i> <span>项目</span></a></li> |
17 | - <li class="parent"><a href=""><i class="glyphicon glyphicon-wrench"></i> <span>APP Hotfix</span></a> | 17 | + {{!--<li class="parent"><a href=""><i class="glyphicon glyphicon-wrench"></i> <span>APP Hotfix</span></a> |
18 | <ul class="children"> | 18 | <ul class="children"> |
19 | <li><a href="/hotfix/Android">Android</a></li> | 19 | <li><a href="/hotfix/Android">Android</a></li> |
20 | <li><a href="/hotfix/iOS">iOS</a></li> | 20 | <li><a href="/hotfix/iOS">iOS</a></li> |
21 | </ul> | 21 | </ul> |
22 | - </li> | 22 | + </li>--}} |
23 | <li class="parent"><a href=""><i class="fa fa-eye"></i> <span>监控中心</span></a> | 23 | <li class="parent"><a href=""><i class="fa fa-eye"></i> <span>监控中心</span></a> |
24 | <ul class="children"> | 24 | <ul class="children"> |
25 | <li><a href="/monitor/log">实时日志</a></li> | 25 | <li><a href="/monitor/log">实时日志</a></li> |
-
Please register or login to post a comment