-
Notifications
You must be signed in to change notification settings - Fork 221
/
index.html
59 lines (54 loc) · 2.04 KB
/
index.html
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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OniUI</title>
<link type="text/css" rel="stylesheet" href="pages/index/styles/index.css"/>
<script src="avalon.js"></script>
<script src="highlight/shCore.js"></script>
<script src="pages/index/scripts/index.js"></script>
<script type="text/javascript">
var QReportParam = {
bu: "hotel",
pd: "oniui"
}
</script>
<script type="text/javascript" src="http://qreport.qunar.com/client/js/qr.min.js"></script>
</head>
<body class="ms-controller" ms-controller="pages">
<div class="oni-layout-header">
<div class="container">
<a href="#!/widgets" ms-click="switchNavTo('组件库')"><img class="oniicon" src="pages/index/imgs/oniicon.png"></a>
<div class="nav">
<ul class="nav-list">
<li class="nav-item" ms-repeat="navs" ms-class="active: $key == activeNav">
<a class="nav-link"
ms-href="{{$val}}"
ms-click="switchNavTo($key)"
>{{$key}}</a>
</li>
</ul>
</div>
</div>
</div>
<div class="oni-layout-search-bar" ms-visible="activeNav !== '下载'">
<div class="search-section">
<div class="search-wrap">
<input class="search-input"
type="text"
ms-duplex="searchKey"
ms-keyup="search()"
ms-click="selectSearchKey()"
ms-attr-placeholder="'搜索' + activeNav + '关键字'"/>
<span class="iconfont icon-search" ms-click="search()"></span>
</div>
</div>
</div>
<div class="oni-layout-main-container">
<!-- 设置id以获取该节点,在搜索时设置其scrollTop -->
<div id="listWrap" class="aside" ms-visible="activeNav !== '下载'" ms-include-src="listSrc"></div>
<div ms-view class="oni-layout-main"></div>
</div>
</body>
</html>