-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bd3a27
commit 8776653
Showing
45 changed files
with
1,219 additions
and
1,188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" ng-app="musicbeat"> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>管理员</title> | ||
<link href="css/vendor.css" rel="stylesheet"> | ||
<link href="css/app.css" rel="stylesheet"> | ||
|
||
</head> | ||
<body style="background-color:lightcyan"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>管理员系统</title> | ||
|
||
<div ng-include="'tpls/adminHeader.html'"></div> | ||
<link rel="icon" type="image/png" href="images/favicon.png"> | ||
|
||
<div ng-view="content"></div> | ||
<link href="css/vendor.css" rel="stylesheet"> | ||
<link href="css/app.css" rel="stylesheet"> | ||
|
||
<div ng-include="'tpls/footer.html'"></div> | ||
</head> | ||
<body> | ||
<div ng-include="'tpls/adminHeader.html'"></div> | ||
<div ui-view="viewAdminHome" | ||
style="background-image: url('images/background16.jpg');background-repeat:no-repeat;"></div> | ||
|
||
<script src="js/vendor.js"></script> | ||
<script src="js/app.js"></script> | ||
<script src="js/vendor.js"></script> | ||
<script src="js/app.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<!-- 数据 --> | ||
<div class="tab-pane" id="panel-data"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="row"> | ||
<div class="col-md-2"></div> | ||
<div class="col-md-8"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<h2>数据处理中心</h2> | ||
</div> | ||
<!--下载量--> | ||
<div class="col-md-12"> | ||
<div class="panel panel-default" style="background-color: transparent"> | ||
<div class="panel-heading font-bold">下载量</div> | ||
<div class="panel-body"> | ||
<div ui-jq="plot" ui-options=" | ||
[ | ||
{ data: {{d0_1}}, label: 'Unique Visits', points: { show: true } }, | ||
{ data: {{d0_2}}, label: 'Page Views', bars: { show: true, barWidth: 0.6, fillColor: { colors: [{ opacity: 0.2 }, { opacity: 0.4}] } } } | ||
], | ||
{ | ||
colors: [ '{{app.color.info}}','{{app.color.success}}' ], | ||
series: { shadowSize: 2 }, | ||
xaxis:{ font: { color: '#ccc' } }, | ||
yaxis:{ font: { color: '#ccc' } }, | ||
grid: { hoverable: true, clickable: true, borderWidth: 0, color: '#ccc' }, | ||
tooltip: true, | ||
tooltipOpts: { content: '%s of %x.1 is %y.4', defaultTheme: false, shifts: { x: 0, y: 20 } } | ||
} | ||
" style="height:120px"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!--点击量--> | ||
<div class="col-md-12"> | ||
<div class="panel panel-default" style="background-color: transparent"> | ||
<div class="panel-heading font-bold">点击量</div> | ||
<div class="panel-body"> | ||
<div ui-jq="plot" ui-options=" | ||
[ | ||
{ data: {{d0_1}}, label: 'Unique Visits', points: { show: true } }, | ||
{ data: {{d0_2}}, label: 'Page Views', bars: { show: true, barWidth: 0.6, fillColor: { colors: [{ opacity: 0.2 }, { opacity: 0.4}] } } } | ||
], | ||
{ | ||
colors: [ '{{app.color.info}}','{{app.color.success}}' ], | ||
series: { shadowSize: 2 }, | ||
xaxis:{ font: { color: '#ccc' } }, | ||
yaxis:{ font: { color: '#ccc' } }, | ||
grid: { hoverable: true, clickable: true, borderWidth: 0, color: '#ccc' }, | ||
tooltip: true, | ||
tooltipOpts: { content: '%s of %x.1 is %y.4', defaultTheme: false, shifts: { x: 0, y: 20 } } | ||
} | ||
" style="height:120px"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-2"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,25 @@ | ||
<header class="header clearfix"> | ||
<div class="left"> | ||
<div class="logo"> | ||
<a ng-href="#"> | ||
<img src="images/logo4.gif" class="img-responsive"> | ||
</a> | ||
</div> | ||
<!-- end .logo --> | ||
<form class="header-search"> | ||
<input type="text" placeholder="Searching"> | ||
<button type="submit"><i class="pe-7s-search"></i></button> | ||
</form> | ||
</div> <!-- end .left --> | ||
|
||
<div class="right" ng-controller="authWrapperController"> | ||
<div ng-hide="session.isAuthed"> | ||
<a href="" class="button login-open">Log In</a> | ||
</div> | ||
<div ng-if="session.roleName === 'user'"> | ||
<img class="userImg" ng-src="{{session.currentUser.picture}}"> | ||
<span class="button" ng-bind-html="session.currentUser.username"></span> | ||
<a href="" class="button login-out" ng-click="logout();">LogOut</a> | ||
</div> | ||
<div ng-if="session.roleName === 'admin'"> | ||
<img class="userImg" ng-src="{{session.currentUser.picture}}"> | ||
<div class="navigation clearfix"> | ||
<nav class="main-nav"> | ||
<ul class="music-unstyled"> | ||
<!--用户信息--> | ||
<li class="menu-item-has-children"> | ||
<a href="" ui-sref="user" class="button" | ||
ng-bind-html="session.currentUser.username"></a> | ||
<ul> | ||
<li><a ui-sref="user">User Info</a></li> | ||
<li><a href="" class="button login-out" ng-click="logout();">LogOut</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</div> | ||
</div> <!-- end .left --> | ||
|
||
</header> | ||
<header class="header fixed clearfix"> | ||
<!--header--> | ||
<div class="navigation clearfix" style="background-color:#070022"> | ||
<nav class="main-nav"> | ||
<ul class="music-unstyled" style="font-size: 290px"> | ||
<!-- 歌手 --> | ||
<li class="menu-item-has-children"> | ||
<a class="active" ui-sref="admin.singer" data-toggle="tab" style="line-height: 2em;font-size: 20px">歌手管理</a> | ||
</li> | ||
<!-- 歌曲 --> | ||
<li class="menu-item-has-children"> | ||
<a ui-sref="admin.song" data-toggle="tab" style="line-height: 2em;font-size: 20px">歌曲管理</a> | ||
</li> | ||
<!-- 数据统计 --> | ||
<li class="menu-item-has-children"> | ||
<a ui-sref="admin.data" data-toggle="tab" style="line-height: 2em;font-size: 20px">数据概览</a> | ||
</li> | ||
<!-- 标签处理 --> | ||
<li class="menu-item-has-children"> | ||
<a ui-sref="admin.label" data-toggle="tab" style="line-height: 2em;font-size: 20px">类别管理</a> | ||
</li> | ||
</ul> | ||
</nav> <!-- end .main-nav --> | ||
</div> <!-- end .navigation --> | ||
</header> <!-- end .header --> |
Oops, something went wrong.