cart.phtml
5.24 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
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
{{> layout/header}}
<div class="order-ensure-page yoho-page clearfix">
{{# orderEnsure}}
<div class="order-edit order-cart" id="cart-page">
<div class="order-title">
<ul>
<li class="first active">查看购物车</li>
<li>填写订单</li>
<li class="end">付款,完成购买</li>
</ul>
</div>
<div class="cartnew-tips">
<div class="tipsbox" id="tipsbox">
<a href="javascript:void(0);" onclick="cart.closeNotice('tipsbox');" class="btn_close" title="关闭"></a>
<strong>温馨提示:</strong>亲爱的顾客,您还没有 <a href="http://www.yohobuy.com/signin.html" class="a_eu">登录</a> 哦,所有商品价格、活动信息以登录后显示为准.
</div>
</div>
<div class="order-pay">
<div class="pay-wapper">
<table>
<thead>
<tr>
<th style="width:40%;">
商品信息
</th>
<th style="width:10%;">单价(元)</th>
<th style="width:10%;">返YOHO币</th>
<th style="width:10%;">数量</th>
<th style="width:10%;">小计(元)</th>
<th style="width:20%;">商品总价(元)</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="6" class="cart-product-num">
<input type="checkbox" name="" id="" checked/>
普通商品(5)
</td>
</tr>
<tr>
<td>
<div class="pay-pro">
<input class="cart-item-check" type="checkbox" name="" id="" checked/>
<a class="pay-pro-icon" href=""><img src="http://img04.static.yohobuy.com/thumb/2015/08/25/08/012622ad14f32470d56a0b1da5d533a7e2-0060x0060-2-goodsimg.jpg"></a>
<p class="pay-pro-info">
<a href="#">Eight Guys 破洞束口牛仔裤</a>
<span>颜色:蓝色 尺码:L</span>
</p>
</div>
</td>
<td>179.00</td>
<td>0</td>
<td class="adjust-cart-num">
<span class="minus"></span><input type="text" value="1"/><span class="plus"></span>
</td>
<td>179.00</td>
<td>
<a href="javascript:void(0);" class="cart-del-btn"><span>删除</span></a>
<a href="javascript:void(0);" class="cart-remove-btn"><span>移入收藏</span></a>
</td>
</tr>
<tr>
<td>
<div class="pay-pro">
<input class="cart-item-check" type="checkbox" name="" id="" checked/>
<a class="pay-pro-icon" href=""><img src="http://img04.static.yohobuy.com/thumb/2015/08/25/08/012622ad14f32470d56a0b1da5d533a7e2-0060x0060-2-goodsimg.jpg"></a>
<p class="pay-pro-info">
<a href="#">Eight Guys 破洞束口牛仔裤</a>
<span>颜色:蓝色 尺码:L</span>
</p>
</div>
</td>
<td>179.00</td>
<td>0</td>
<td class="adjust-cart-num">
<span class="minus"></span><input type="text" value="1"/><span class="plus"></span>
</td>
<td>179.00</td>
<td>
<a href="javascript:void(0);" class="cart-del-btn"><span>删除</span></a>
<a href="javascript:void(0);" class="cart-remove-btn"><span>移入收藏</span></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="cartnew-sum">
<div class="left batch_div">
<a href="javascript:void(0);" onclick="cart.clearCart();" class="btn_h" style="display:none;"><span>清空商品</span></a>
<input type="checkbox" onclick="checkAllGoods(this, 'g_');" id="cbSelAllGoods"><span>全选</span><a href="javascript:void(0);" onclick="cart.multiRemove();">批量删除</a><a href="javascript:void(0);" onclick="cart.multiMoveToFavorite();">批量移入收藏夹</a>
</div>
<div class="right">
<p class="sum">商品总价(¥0.00)- 活动(¥0.00)= 商品金额总计(¥0.00)</p>
<p>获赠YOHO币:0个 商品总价(不含运费):<strong>¥0.00</strong> 元</p>
</div>
</div>
<div class="cartnew-submit" id="payDiv">
<a href="http://www.yohobuy.com/search" class="btn_continue">再逛逛</a>
<a href="javascript:void(0)" onclick="cart.checkStock();" class="btn_account">去结算</a>
<a href="javascript:void(0)" class="btn_account_disabled">去结算</a>
<div class="go_cash_tips" id="cannotPayNotice"><span>请将普通商品与预售商品分开结算,普通商品订单我们将为您优先发货。</span></div>
</div>
</div>
{{/ orderEnsure}}
</div>
{{> layout/footer}}