product_list.html
2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="user-scalable=0, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta content="telephone=no" name="format-detection" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>产品列表</title>
<link rel="stylesheet" href="../css/style/common.css">
</head>
<body>
<link rel="stylesheet" href="../css/style/product_list.css">
<div class="m-page" data-role="page" id="prodtctListPage">
<!-- header -->
<header class="m-header header-light">
<a href="#" class="lt-bar"><i class="m-icon icon-back"></i></a>
<div class="head">
<h1>萝卜</h1>
</div>
<a href="#" class="rt-bar"><i class="m-icon icon-fiter"></i></a>
</header>
<div class="m-content">
<ul class="m-tab">
<li><a href="#">默认</a></li>
<li><a href="#">销量</a></li>
<li><a href="#">价格</a></li>
<li><a href="#">上架时间</a></li>
</ul>
<ul class="m-list-view border-1px border-top">
<li class="cell cell-pic border-1px border-bottom">
<a href="#">
<img src="../temp/pic_80.png" width="80" height="80" alt="" class="pic">
<div class="cont">
<h3>山东白萝卜,物美价廉</h3>
<em class="font-red">170-180元/箱</em>
<p>胖丫果业... 主营:橘子 柚子...</p>
<p>辽宁沈阳地利批发市场5号厅</p>
</div>
</a>
</li>
<li class="cell cell-pic border-1px border-bottom">
<a href="#">
<img src="../temp/pic_80.png" width="80" height="80" alt="" class="pic">
<div class="cont">
<h3>山东白萝卜,物美价廉</h3>
<em class="font-red">170-180元/箱</em>
<p>胖丫果业... 主营:橘子 柚子...</p>
<p>辽宁沈阳地利批发市场5号厅</p>
</div>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>