rationRecord.jsp
2.97 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
<?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 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>
<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/css/ration/returnBefore.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/ration/marktEntrust.css?r=${now}" rel="stylesheet" type="text/css" />
</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>
<ul class="tab">
<li ><a href="${ctx }/user/ration/old/qualities">配售管理</a> </li>
<li class="selected"><a href="${ctx }/user/ration/old/rationRecord">配售记录</a></li>
</ul>
<table border="0" style="width:100%"
class=" etlistbg entrusttable" cellpadding="0" cellspacing="0">
<thead>
<tr id="head">
<td width="6%">序号</td>
<td width="8%">藏品代码</td>
<td width="10%">藏品名称</td>
<td width="14%">配售价(元)</td>
<td width="10%">申请时间</td>
<td width="12%">申请配售量</td>
<td width="10%">配售数量</td>
<td width="14%">配售金额(元)</td>
<td width="10%">配售状态</td>
</tr>
</thead>
<tbody>
<c:if test="${empty records }">
<tr>
<td style="background:#f2f2f2;" colspan="10"><img style="width:65%" src="${ctx }/resource/images/noData.png"></img></td>
</tr>
</c:if>
<c:forEach var="record" items="${records }" varStatus="status">
<tr height="40">
<td >${status.count}</td>
<td>${record.otc_code }</td>
<td >${record.otc_name }</td>
<td >${record.price}</td>
<td>${record.create_at }</td>
<td>${record.ration_amount}</td>
<td>${record.stock_amount}</td>
<td>${record.fund}</td>
<td>
<c:if test="${record.ration_status == 1}">
交割成功
</c:if>
<c:if test="${record.ration_status == 0}">
交割失败
</c:if>
</td>
</tr>
</c:forEach>
</tbody>
</table>
</div>
<div class="clear"></div>
</div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>