-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.html
68 lines (66 loc) · 2.38 KB
/
order.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>i读书</title>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/mycss.css"/>
</head>
<body>
<div id="header_box"></div>
<!--面包屑导航-->
<div class="breadcrumb container">
<a href="">首页</a> > <a href="">订单确认</a>
</div>
<!--主体内容-->
<div class="container">
<h2 class="order_title">选择收货地址</h2>
<div class="user_address">
<ul>
<li class="active"><span></span>韩小米 18512345678 北京 北京市 海淀区 中关村软件园二期</li>
<li><span></span>张大胖 18512345678 北京 北京市 海淀区 芍药居北里</li>
<li><span></span>王小明 18512345678 河北 石家庄市 桥西区 友谊南大街43号 翰林观天下 12栋</li>
</ul>
</div>
<h2 class="order_title">确认订单信息</h2>
<div class="order_list">
<h3 class="clearfloat"><span>商品信息</span><span>单价</span><span>数量</span><span>小计</span></h3>
<ul>
<li>
<img src="img-product/01.jpg" alt=""/>
<h4>JAVASCRIPT基础入门</h4>
<span>799.00</span>
<em>2</em>
<strong>1368.00</strong>
</li>
<li>
<img src="img-product/01.jpg" alt=""/>
<h4>JAVASCRIPT基础入门</h4>
<span>799.00</span>
<em>2</em>
<strong>1368.00</strong>
</li>
<li>
<img src="img-product/01.jpg" alt=""/>
<h4>JAVASCRIPT基础入门</h4>
<span>799.00</span>
<em>2</em>
<strong>1368.00</strong>
</li>
</ul>
</div>
<h2 class="order_title">备注信息: <input type="text"/></h2>
<div class="order_sum">
<ul>
<li><span>商品总金额:</span><span>¥2886.00</span></li>
<li><span>配送费:</span><span>¥12.0</span></li>
<li><span>应付金额:</span><strong>¥2898.0</strong></li>
<li><button type="button">提交订单</button></li>
</ul>
</div>
</div>
<!--footer-->
<footer id="footer"></footer>
<script src="js/main.js"></script>
</body>
</html>