-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 2.15 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>系统管理平台</title>
<link rel="stylesheet" href="../../lib/css/sweetalert.css">
<link href="lib/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body ng-controller="indexCtrl">
<div class="header fn-clear">
<div class="header-logo fn-left">
<img class="logo" src="images/logo.png" alt="">
</div>
<div class="header-topbar fn-right">
<div class="search fn-left" ng-controller="searchCtrl">
<search-directive search-fn="searchFn()"></search-directive>
</div>
<div class="remind fn-left">
<span class="remind-item"><img src="images/icon-11.png" alt=""><i class="drogue">99</i></span>
<span class="remind-item"><img src="images/icon-12.png" alt=""></span>
<span class="remind-item"><img src="images/icon-13.png" alt=""></span>
</div>
<div class="user fn-left">
<img src="images/photo1.jpg" alt="" class="photo fn-left">
<span class="name" ng-bind="userInfo.name"></span>
</div>
<div class="login-out fn-left" ng-click="loginOut()">退出</div>
</div>
</div>
<div class="index-content" id="tabs" ng-controller="tabsCtrl">
<div class="accordion-list" ng-class="{nothing: checked}" ng-controller="accordionCtrl">
<accordion-list-directive lists="lists" value="value" add-tab="addTab()"></accordion-list-directive>
</div>
<div class="tab-container" ng-class="{full: checked}">
<label for="toggle-btn" class="slide-toggle" ng-model="checked"></label>
<input id="toggle-btn" type="checkbox" ng-model="checked" class="hidden">
<tabs-title-directive remove-tab="removeTab()"></tabs-title-directive>
<tabs-content-directive></tabs-content-directive>
</div>
</div>
<script src="lib/require.js" data-main="js/entry"></script>
</body>
</html>