-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (112 loc) · 3.64 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>慢慢买-首页</title>
<link rel="stylesheet" href="lib/mui/css/mui.css">
<link rel="stylesheet" href="lib/fa/css/font-awesome.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container">
<div class="head mui-clearfix">
<div class="head-left">
<a href="index.html">
<img src="images/header_logo.png" alt="">
</a>
</div>
<div class="head-right">
<img src="images/header_app.png" alt="">
</div>
</div>
<div class="search">
<form action="#" id="form">
<div class="mui-input-row">
<input type="text" placeholder="请输入商品">
</div>
<div class="mui-input-row button-box">
<button type="button">搜索</button>
</div>
</form>
</div>
<div class="nav">
<ul class="mui-clearfix nav-content">
</ul>
</div>
<div class="recommend mui-clearfix">
<span>超级推荐</span>
<img src="http://www.zuyushop.com/wap/images/more.png" alt="" width="20" height="20">
</div>
<div class="main">
<div class="product-list">
<ul class="mui-clearfix products">
</ul>
</div>
</div>
<div class="more-bar">
<a href="moneyctrl.html" class="mui-btn mui-btn-primary mui-block">更多优惠信息>></a>
</div>
<div class="brand">
<span>品牌排行</span>
<img src="http://www.zuyushop.com/wap/images/more.png" alt="" width="20" height="20">
</div>
<div class="footer">
<div class="footer-top">
<a href="login.html">登录</a>
<a href="register.html">注册</a>
<a href="javascript:;" class="back">
<img src="http://www.zuyushop.com/wap/images/top.jpg" alt="" width="15" height="15">
返回顶部
</a>
</div>
<div class="footer-bottom">
<p>
<a href="javascript:;">手机APP下载</a>
<a href="index.html">慢慢买手机版</a>
--掌上比价平台
</p>
<p>m.manmanbuy.com</p>
</div>
</div>
</div>
<script type="text/html" id="tpl">
{{each result v i}}
<li>
<a href="{{v.titlehref}}">
{{#v.img}}
<p>{{v.name}}</p>
</a>
</li>
{{/each}}
</script>
<script type="text/html" id="tpl2">
{{each result v i}}
<li>
<a href="detailproduct.html?productid={{v.productId}}" data-info="{{v.productInfo}}" data-info2="{{v.productInfo2}}" >
<div class="pic">
{{#v.productImg2}}
</div>
<div class="info">
<div class="title mui-ellipsis-2">
{{v.productName}}
<span>{{v.productPinkage}}</span>
</div>
<div class="other mui-clearfix">
<span class="mall">{{v.productFrom}}| {{v.productTime}}</span>
<i class="icon-comment">{{v.productComCount}}</i>
</div>
</div>
</a>
</li>
{{/each}}
</script>
<script src="lib/zepto/zepto.min.js"></script>
<script src="lib/mui/js/mui.js"></script>
<script src="lib/artTemplate/template-web.js"></script>
<script src="js/common.js"></script>
<script src="js/index.js"></script>
</body>
</html>