-
Notifications
You must be signed in to change notification settings - Fork 60
/
search-result.html
142 lines (136 loc) · 3.73 KB
/
search-result.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello MUI</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="css/mui.min.css">
<link rel="stylesheet" href="css/media.css" />
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<h1 class="mui-title">搜索结果</h1>
</header>
<div id="pullrefresh" class="mui-content mui-scroll-wrapper">
<div class="mui-scroll">
<div id="list"></div>
</div>
</div>
<script type="text/template" id="tpl">
<ul class="mui-table-view recom">
<% _.each(list, function(v, i){ %>
<li class="mui-table-view-cell" data-url="<%=v.url%>">
<a href="javascript:;">
<div class="media">
<div class="media-left">
<img src="<%=v.img%>" width="77" />
</div>
<div class="media-body">
<div style="font-size: 16px; font-weight: 400;"><%=v.name%></div>
<p><%=v.lastest%></p>
<p>下载:<%=v.download%></p>
<p>类型:<%=v.type%></p>
<p>地区:<%=v.local%></p>
</div>
</div>
</a>
</li>
<% }) %>
</ul>
</script>
<script src="js/mui.min.js"></script>
<script src="js/zepto.min.js"></script>
<script src="js/underscore.js"></script>
<script src="js/common.js"></script>
<script>
var tplRender = _.template($("#tpl").html());
var page = 1,
k, w;
mui.init({
swipeBack: true,
pullRefresh: {
container: '#pullrefresh',
down: {
callback: pulldownRefresh
},
up: {
contentrefresh: '正在加载...',
callback: pullupRefresh
}
}
});
if (mui.os.plus) {
mui.plusReady(function() {
k = plus.webview.currentWebview().k;
$(".mui-title").html("\"" + k + "\"" + $(".mui-title").html())
setTimeout(function() {
mui('#pullrefresh').pullRefresh().pullupLoading();
}, 400);
});
} else {
mui.ready(function() {
mui('#pullrefresh').pullRefresh().pullupLoading();
});
}
function pulldownRefresh() {
page = 1;
$.ajax({
url: Common.api + '/search',
async: true,
cache: false,
method: 'get',
dataType: 'json',
data: {
k: k,
page: page
},
success: function(data) {
if(!data.lastPage) {
page++;
}
$("#list").html(tplRender(data));
mui('#pullrefresh').pullRefresh().endPulldownToRefresh();
//必须在页面渲染好了再注册tap事件,否则不生效
$(".recom").on("tap", "li", function() {
var url = $(this).attr("data-url");
Common.open("animate-detail.html", "animate-detail.html", {
url: encodeURIComponent(url)
});
});
}
});
}
function pullupRefresh() {
$.ajax({
url: Common.api + '/search',
async: true,
cache: false,
method: 'get',
dataType: 'json',
data: {
k: k,
page: page
},
success: function(data) {
if(!data.lastPage) {
page++;
}
$("#list").append(tplRender(data));
mui('#pullrefresh').pullRefresh().endPullupToRefresh(data.lastPage); //参数为true代表没有更多数据了。
//必须在页面渲染好了再注册tap事件,否则不生效
$(".recom").on("tap", "li", function() {
var url = $(this).attr("data-url");
Common.open("animate-detail.html", "animate-detail.html", {
url: encodeURIComponent(url)
});
});
}
});
}
</script>
</body>
</html>