-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitemlist.html
71 lines (62 loc) · 2.02 KB
/
itemlist.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link href="dist/css/bootstrap-theme.css" rel="stylesheet">
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<script src="model/fixtures.js"></script>
<script src="model/item.js"></script>
<script src="model/promotion.js"></script>
<script src="lib/underscore.js"></script>
<title></title>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div>
<ul class="nav navbar-nav navbar-left">
<li><a href="#"> Let's Go </a></li>
<li ><a href="home.html"> 主页 </a></li>
<li class="active"><a href="itemlist.html"> 商品列表 </a></li>
</ul>
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="shopcart.html"> <span class="glyphicon glyphicon-shopping-cart"></span> 购物车(
<span class="shopcart_num">
0
</span>
) </a> </li>
</ul>
</div>
</div>
</nav>
<br>
<br>
<br>
<br>
<div>
<div class="container ">
<div class="panel panel-default">
<div class=" panel-heading" style="background-color: lightgrey"><h3 class="text-center">商品列表</h3></div>
<div class="panel-body">
<table class="table table-bordered text-center">
<thead class="items_list">
<tr >
<td class='col-md-2'>分类</td>
<td class='col-md-2'>名称</td>
<td class='col-md-2'>单价(元)</td>
<td class='col-md-1'>单位</td>
<td class='col-md-3'></td>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<script src="dist/js/jquery-1.8.0.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
<script src="function/tableoutput.js"></script>
</body>
</html>