-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoneyctrl.html
More file actions
96 lines (75 loc) · 2.3 KB
/
moneyctrl.html
File metadata and controls
96 lines (75 loc) · 2.3 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
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
<link rel="stylesheet" href="./css/base.css"/>
<link rel="stylesheet" href="./css/moneyctrl.css"/>
</head>
<body>
<!--头部开始-->
<header class="mon-header">
<div class="left">
<a href="index.html"><img src="images/icback.svg" alt=""/></a>
<h2>省钱控-最新优惠</h2>
</div>
<a class="downLoad" href="#"></a>
</header>
<!--头部结束-->
<!--产品区元素-->
<section class="mon-pro">
<ul></ul>
<!--产品的模板引擎-->
<script type="text/template" id="getmoneyctrl">
{{each result as v i }}
<li>
<a href="moneyproduct.html?productid={{v.productId}}">
{{#v.productImgSm}}
<div class="fr">
<p>
{{v.productName}}
<span>{{v.productPinkage}}</span>
</p>
<div>
<span>
{{v.productFrom}}
|
{{v.productTime}}
</span>
<b class="comment_b">{{v.productComCount}}</b>
</div>
</div>
</a>
</li>
{{/each}}
</script>
<!--产品的模板引擎-->
</section>
<!--产品区元素-->
<!--按钮区开始-->
<section class="mon_area clearfix">
</section>
<!--按钮区结束-->
<!--尾部区域-->
<footer class="clearfix">
<ul class="clearfix">
<li><a href="#">登录</a></li>
<li><a href="#">注册</a></li>
<li><a href="#">返回顶部</a></li>
</ul>
<p><a href="#">手机APP下载</a>
<a href="">慢慢买手机版</a>
-- 掌上比价平台
</p>
<p>m.manmanbuy.com</p>
</footer>
<!--尾部区域-->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/artTemplate/template.js"></script>
<script src="js/common.js"></script>
<script src="js/common/route.js"></script>
<script src="js/moneyctrl.js"></script>
</body>
</html>