express.jsp 5.94 KB
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html>
<html>
<head>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx}/resource/css/member.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/tab-slide.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/home.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${ctx }/resource/js/user/pick/pick.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/user/pick/express.js"></script>
<script type="text/javascript">
	var errorMessage = '${ resultInfo.message }';
	var addresses = '${addresses}';
</script>
</head>
<body>
	<jsp:include page="${ctx }/view/common/header.jsp" />
	<div class="bigbox">
		<jsp:include page="${ctx }/view/common/menu.jsp" />
		<div class="etlist rightbox0">
			<h2 style="text-align: left;">提货确认</h2>
			<div class="crossline"></div>
			<div class="clear"></div>
			<div class="pick self express">
				<div class="tab-slide bottom-border">
					<!-- <a class="attention" href="/user/pick/tab?pickType=6">转亚交所AAE</a>  -->
					<a class="attention" href="/user/pick/tab?pickType=3">转赵涌在线</a> 
					<a class="attention" href="/user/pick/tab?pickType=1">上门自提</a> 
					<a class="tab-seletced" href="/user/pick/tab?pickType=2">顺丰到付</a>
				</div>
				<div class="content zhaoonline">
					<form id="pickForm" action="${ctx }/user/pick/express" method="post">
						<div class="aBtn">
							<h4 >请选择收货地址</h4>
							<a class="red-btn add-address" href="${ctx }/user/address/search">添加收货地址</a>
							<div class="clear"></div>
						</div>
						<ul class="address-box" id="addressList"></ul>
						<h4>确认提货信息</h4>
						<div class="pick-msg">
							<table cellpadding='0' cellspacing='0'>
								<thead>
									<tr>
										<th width="20%">藏品代码</th>
										<th class="left-font">藏品名称</th>
										<th>可提数量</th>
										<th>提货数量</th>
										<c:if test="${pack == '1' }">
											<th>封装方式</th>
											<th>封装费用</th>
										</c:if>
									</tr>
								</thead>
								<tbody>
									<c:forEach items="${applyList }" var="pick">
										<tr>
											<td>${pick.otcCode }</td>
											<td class="left-font">${pick.otcName }</td>
											<td>${pick.enableAmount }</td>
											<td>${pick.occurAmount }</td>
											<c:if test="${pack == '1' }">
											<td>${pick.packType }</td>
											<td><fmt:formatNumber pattern="###.00" value="${pick.packFee }" />&nbsp;元/个</td>
											</c:if>
										</tr>
									</c:forEach>
								</tbody>
							</table>
						</div>
						<h4>费用统计</h4>
						<div class="input-box">
							<p>
								<span>是否保价:</span> 
								<label> 
									<input type="radio" name="insuranceType" checked="checked" value="0" />不保价
								</label> 
								<label> 
									<input type="radio" name="insuranceType" value="1" />保价 
									<small>(投保金额最低1000元)</small>
								</label>
							</p>
							<div id="insure" class="insure">
								<a class="blue-font">若您不对寄递的物品进行投保,物品在运输过程中发生丢损时,顺丰将无法完全赔偿您的损失。</a>
							</div>
							<div id="notInsure" class="notInsure" style="display: none;">
								<label>投保金额:<input type="text" maxlength="7" id="insurance" name="insurance" />
								</label> <label>预估保费:<span id="spInsurance">0.00</span>元(到付)
								</label>
							</div>
							<%-- <div class="positionGift-price">
								<label>
									<small>物流包装费用:</small>
									<span>6.00</span>元(即时扣取)
								</label>
								<c:if test="${pack == '1' }">
								<label>
									<small>封装费用:</small>
									<span><fmt:formatNumber pattern="###.00" value="${pickPackFeeAmount }" /></span>元(即时扣取)
								</label>
								<label style="position: relative;">
									<small>包装费用:</small>
									<span>
									<c:if test="${pickPackage == null }">0.00</c:if>
									<c:if test="${pickPackage != null }">
										<fmt:formatNumber pattern="###.00" value="${pickPackage.packageFee }" />
									</c:if>
									</span>元(即时扣取)
									<span style="position: absolute;right: 32px;top: 8px;">${pickPackage.packageName }</span>
								</label>
								<label class="totle">
									<small>费用合计:</small>
									<span>
										<fmt:formatNumber pattern="###.00" 
											value="${pickPackFeeAmount + pickPackage.packageFee + 6.00 }" />
									</span>元(即时扣取)
								</label>
								</c:if>
							</div> --%>
						</div>
						<div>
							<p style="color: red; padding: 20px 0 0;text-align: left;">
								<c:if test="${pickTotal >= 1000 && pack == '1'}">
									由于您的封装提货数量超过1000枚,所以发货时间可能会延后,给您带来的不便,敬请谅解!
								</c:if>
							</p>
						</div>
						<div class="pick-person">
							<div class="left">
								<p id="spAddress"></p>
								<p>
									<span id="spUserName"></span> 
									<span>联系电话: <i class="bold" id="spMobileNo"></i></span>
								</p>
							</div>
							<a id="btnSubmit" class="red-btn">确认提货</a>
						</div>
						<div class="remark">
							<label><input id="promise" type="checkbox" />本人承诺,提货后不会因为品相问题拒收!</label>
						</div>
					</form>
				</div>
			</div>
		</div>
	</div>
	<div class="clear"></div>
	<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>