This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
darry_ring/src/main/resources/templates/cart.html

151 lines
5.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
<head>
<title>购物车</title>
<meta charset="utf-8" />
<link href="../css/shopping.css?v=1.3.5" type="text/css" rel="stylesheet" />
<script src="../js/jquery.js" type="text/javascript"></script>
<script src="../js/shoppcart.js" type="text/javascript"></script>
</head>
<body>
<iframe src="javascript:false;" style="display: none;"></iframe>
<form id="aspnetForm" action="/nCart/Cart.aspx" method="post" name="aspnetForm">
<!--全部背景-->
<div class="all-thing">
<!--中间内容-->
<div class="tcmain">
<!--头部-->
<div class="shop_top">
<div class="shopt_left fl">
<a title="Darry Ring" href="/index"> <img width="186" height="42" src="../images/dr.png" /> </a>
<span>求婚钻戒领导品牌</span>
</div>
<div class="shopt_right fr">
<span id="ctl00_ltlUname">你好KLNgOk</span>
<a class="my_dr" href="/member_index">我的DR</a>
<a onClick="javascript:logout()" class="tc_dr" href="#">退出</a>
<a class="help_dr" href="/help">帮助中心</a>
</div>
</div>
<!--头部end-->
<!--导航条-->
<div class="shop_nav" id="ctl00_showNav"></div>
<!--导航条end-->
<script type="text/javascript">
function deleteCart(cid) {
if (confirm("确认删除?")) {
$.get("/nAPI/Cart.aspx?action=delete&cid=" + cid, function() {
window.location.reload();
});
}
}
function clearCart() {
if (confirm("确认清除?")) {
$.get("/nAPI/Cart.aspx?action=clear", function() {
window.location.reload();
});
}
}
function toPay() {
var nu = '1';
window.location = "cart_agreement.html";
}
</script>
<!--内容-->
<div class="shop_cort">
<!--左边-->
<div class="shop_cort-left fl">
<h3>查看我的购物车</h3>
<!--购物车-->
<table cellspacing="0" cellpadding="0" border="0" class="shop_tabble">
<tbody>
<tr class="nav_tr">
<td style="width:240px" class="sp_td">商品</td>
<td style="width:100px" class="cz_td">材质</td>
<td style="width:100px" class="sc_td">手寸/尺寸</td>
<td style="width:100px" class="kz_td">数量</td>
<td class="gm_td">购买价</td>
</tr>
<tr class="cp_tr">
<td class="sp_td">
<a href="/darry_ring/87.html" class="jx_shop"> <img width="85" height="85" src="../images/201409011932585de1c2f2a9.jpg" /> <span> Forever系列 经典款</span></a>
</td>
<td class="cz_td">18K白金</td>
<td class="sc_td">7</td>
<td class="kz_td">1</td>
<td style="font-family:微软雅黑" class="gm_td">¥10,800</td>
<td class="close_td"><span onClick="deleteCart(61538);" class="sicon s_close"></span></td>
</tr>
</tbody>
</table>
<!--购物车end-->
<!--结算-->
<div class="shop_js">
<a class="jx_shop" href="/lists">继续购物</a>
<a class="qk_shop" href="javascript:clearCart();">清空购物车</a>
<span>你购买了<i>1</i>件商品</span>
<span>总计:<i style="font-family:微软雅黑" class="fw_bold">¥10,800</i></span>
<span onClick="toPay();" class="end_bt"><em>立即结算</em></span>
</div>
<!--结算end-->
</div>
<!--左边end-->
<!--右边-->
<!--右边-->
<div class="shop_cort-right fr">
<div class="shop_right-nr">
<h3>购物帮助指南</h3>
<div class="shop_right-zx line_bottom">
<p class="shop_lx">24小时在线客服</p>
<p class="shop_tel">400-13-14520</p>
</div>
<div class="shop_right-zf line_bottom">
<h4>支付安全保障</h4>
<p>安全支付系统采用SSL加密。</p>
<ul class="shop_right-ul">
<li class="shop_cor-yl"></li>
<li class="shop_cor-cft"></li>
<li class="shop_cor-zf"></li>
</ul>
</div>
<div class="shop_right-ps">
<h4>全球配送</h4>
<p class="shop_kd">支持全球配送,店铺取货</p>
<p class="shop_bj">全程保价 无风险</p>
</div>
</div>
</div>
<!--右边end-->
<!--右边end-->
</div>
<!--底部-->
<div class="cmain shop_foot">
<p>Copyright &copy; 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号</p>
<p>中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票</p>
<div class="shop_foot-img">
<img src="../images/db.jpg" />
</div>
</div>
<!--底部end-->
</div>
<!--全部背景end-->
</div>
<script type="text/javascript">
function logout() {
if (window.confirm('确定退出吗?')) {
$.get("/nAPI/QuitExit.ashx", function(data) {
window.location.href = "/";
});
}
}
</script>
</form>
</body>
</html>