zhaoonline.jsp
4.85 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
119
120
121
122
123
124
125
126
127
128
129
130
131
<?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/zhaoonline.js"></script>
<script type="text/javascript">
var errorMessage = '${ resultInfo.message }';
</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 ">
<div class="tab-slide bottom-border">
<!-- <a class="attention" href="/user/pick/tab?pickType=6">转亚交所AAE</a> -->
<a class="tab-seletced" href="/user/pick/tab?pickType=3">转赵涌在线</a>
<a class="attention" href="/user/pick/tab?pickType=1">上门自提</a>
<a class="attention" href="/user/pick/tab?pickType=2">顺丰到付</a>
</div>
<div class="content zhaoonline">
<h4>填写账号信息</h4>
<div class="content-msg">
<div class="input-box ">
<form id="pickForm" method="post" action="${ctx }/user/pick/zhaoonline">
<p>
<span>赵涌在线账号:</span>
<input type="text" id="zhaoonlineId" name="zhaoonlineId" maxlength="11" /> <i>( 7位会员号或11位手机号 )</i>
<a class="blue-font" href="http://www.zhaoonline.com/consignor/advantages-terms.shtml"
target="_blank">点击查看赵涌在线送拍流程、委托收费标准
</a>
<a class="blue-font" href="http://home.zhaoonline.com/register.shtml"
target="_blank">点击注册赵涌在线账号
</a>
</p>
</form>
</div>
<div class="tip">
<p>• 务必保证输入帐号为本人同户名会员号</p>
<p>• 流转成功后,请去赵涌在线官方网站查看竞拍细节</p>
<p>• 如有问题请拨打客服热线 400-969-0800</p>
</div>
</div>
<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 }" /> 元/个</td>
</c:if>
</tr>
</c:forEach>
</tbody>
</table>
</div>
<c:if test="${pack == '1' }">
<h4>费用统计</h4>
<div class="positionGift-price">
<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;text-align: right;">${pickPackage.packageName }</span>
</label>
<label class="totle">
<small>费用合计:</small>
<span>
<fmt:formatNumber pattern="###.00"
value="${pickPackFeeAmount + pickPackage.packageFee }" />
</span>元 (即时扣取)
</label>
</div>
</c:if>
<p class="pick-person">
<span>赵涌在线账号</span>
<span class="bold" id="spZhaoonlineId"></span>
<a class="red-btn" id="btnSubmit">确认提货</a>
</p>
</div>
</div>
</div>
</div>
<div class="clear"></div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>