-
Notifications
You must be signed in to change notification settings - Fork 0
/
brand.html
170 lines (150 loc) · 4.42 KB
/
brand.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<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="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/brand.css">
</head>
<body>
<div class="container">
<div class="head mui-clearfix">
<div class="head-left">
<a href="javascript:history.go(-1);">
</a>
</div>
<h3>品牌大全</h3>
<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-lis">
<a href="index.html">
首页 >
</a>
<a href="category.html">
全部分类 >
</a>
</div>
<div class="which-good">
<div class="brand">
<span>平板电视哪个牌子好</span>
</div>
<div class="brand-sort">
<ul>
</ul>
</div>
</div>
<div class="which-nums">
<div class="brand">
<span>热门销量排行</span>
</div>
<div class="product-list">
<ul class="mui-clearfix products">
</ul>
</div>
</div>
<div class="which-hot-comment">
<div class="brand">
<span>热门评论排行</span>
</div>
<div class="product-com">
<ul>
</ul>
</div>
</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 class="mui-clearfix">
<a href="productlist.html?categoryId={{v.categoryId}}">
<b>{{i+1}}</b>
<div class="title">
<h4>{{v.brandName}}</h4>
<p>{{v.brandInfo}}</p>
</div>
</a>
</li>
{{/each}}
</script>
<script type="text/html" id="tpl1">
{{each result v i}}
<li>
<a href="bijia.html?productid={{v.productId}}" >
<div class="pic">
{{#v.productImg}}
</div>
<div class="info">
<div class="title mui-ellipsis-2">
{{v.productName}}
</div>
<div class="price">
<span>{{v.productPrice}}</span>
<span>★★★★★</span>
</div>
<div class="other mui-clearfix">
<span class="mall">{{v.productQuote}}</span>
<i class="icon-comment">{{v.productCom}}</i>
</div>
</div>
</a>
</li>
{{/each}}
</script>
<script type="text/html" id="tpl2">
{{each result v i}}
<li>
<div class="title mui-clearfix">
{{#productImg}}
<p class="info">{{productName}}</p>
</div>
<div class="comment">
<div class="top">
<span>{{v.comName}}</span>
<span class="star">★★★★★</span>
<span>{{v.comTime}}</span>
</div>
<p>{{v.comContent}}</p>
</div>
</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/brand.js"></script>
</body>
</html>