history.jsp
2.82 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
<?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"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx }/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/home.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/member.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/js/utils/page/page.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${ctx}/resource/js/utils/page/query.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/utils/page/page.js"></script>
<script type="text/javascript">
$(function() {
$('#pageToolbar').Paging({
pagesize : '${params.rows }',
count : '${params._total}',
toolbar : true,
current : Number('${params.page}'),
callback : function(page, size, count) {
window.location.href = '${ctx }/user/pick/history?page=' + page + '&rows=' + size;
}
});
});
</script>
<style>
.record {
width: 100%;
}
.record td {
color: #d1131d;
background: #f2f2f2;
padding: 10px 0;
}
.record th {
padding: 10px 0;
font-weight: 500;
}
.left-font {
padding-left: 10px !important;
}
</style>
</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" style="margin-top: 28px">
<h2 style="text-align: left;">历史提货记录</h2>
<div class="crossline"></div>
<div class="clear"></div>
<table class="record" cellpadding="0" cellspacing="0">
<tr>
<td>序号</td>
<td>藏品代码</td>
<td class="left-font">藏品名称</td>
<td>申请日期</td>
<td>提货数量</td>
<td>状态</td>
<td>收货人</td>
<td>提货地点</td>
</tr>
<tbody>
<c:forEach items="${picks }" var="pick" varStatus="status">
<tr>
<th>${status.index + 1 }</th>
<th>${pick.otcCode }</th>
<th class="left-font">${pick.otcName }</th>
<th>${pick.initDate }</th>
<th>${pick.occurAmount }</th>
<th>${pick.pickStatusName }</th>
<th>${pick.pickingName }</th>
<th>${pick.pickingAddress }</th>
</tr>
</c:forEach>
</tbody>
</table>
<c:if test="${!empty picks }">
<div id="pageToolbar"></div>
</c:if>
</div>
<div class="clear"></div>
</div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>