-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathweek-update.html
86 lines (82 loc) · 2.38 KB
/
week-update.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
<!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/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 class="mui-content">
<script type="text/template" id="tpl">
<div id="sliderSegmentedControl" class="mui-segmented-control mui-segmented-control-inverted">
<% _.each(list, function(v, i){ %>
<a class="mui-control-item <%if(i == 0){%> mui-active <%}%>" href="#item<%=i+1%>">
<%=v.week%>
</a>
<% }) %>
</div>
<div id="list">
<% _.each(list, function(v, i){ %>
<div id="item<%=i+1%>" class="mui-control-content <%if(i==0){%> mui-active<%}%>">
<ul class="mui-table-view">
<% _.each(v.list, function(vv, ii){ %>
<li class="mui-table-view-cell" data-url="<%=vv.url%>">
<a href="javascript:;">
<%=vv.name%>
<%=vv.updateTime%>
</a>
</li>
<% }) %>
</ul>
</div>
<% }) %>
</div>
</script>
</div>
<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 w;
mui.init({
swipeBack: true
});
mui.plusReady(function() {
w = Common.showWaiting();
$.ajax({
url: Common.api + '/weekUpdate',
async: true,
cache: false,
method: 'get',
dataType: 'json',
data: {},
success: function(data) {
var obj = {
list: data
};
$(".mui-content").html(tplRender(obj));
Common.closeWaiting(w);
//必须在页面渲染好了再注册tap事件,否则不生效
$("#list").on("tap", "li", function() {
var url = $(this).attr("data-url");
var k = decodeURIComponent(url.split("?k=")[1]);
Common.open("search-result.html", "search-result.html", {
k: k
});
});
}
});
});
</script>
</body>
</html>