AmountHistory1.jsp
5.25 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
<?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/AmountHistory.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/page.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/tab-slide.css" rel="stylesheet" type="text/css" />
<script src="${ctx}/resource/js/pager.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/user/fundRecord.js"></script>
<link href="${ctx }/resource/css/jquery-date/jquery-ui-1.10.1.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/siena.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/santiago.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/latoja.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/lugo.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/cangas.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/vigo.datepicker.css" rel="stylesheet" />
<link href="${ctx }/resource/css/jquery-date/nigran.datepicker.css" rel="stylesheet" />
<script type="text/javascript" src="${ctx }/resource/js/utils/jquery/jquery-ui-1.10.1.min.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/utils/jquery/jquery.ui.datepicker-zh-cn.js"></script>
<script type="text/javascript" src="${ctx }/resource/js/user/fundRecord.js"></script>
</head>
<body onload="initPager(${params.pointRecord_total},20, 'pager')">
<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;position: relative;">
<h2 style="text-align: left;">额度记录</h2>
<div class="crossline"></div>
<%-- <div class="tab-slide bottom-border">
<a class=" tab-seletced" href="${ctx }/user/point/record/list">额度流水</a>
<a class="attention" href="${ctx}/user/point/record/queryDetail">获取记录</a>
</div> --%>
<ul class="tab">
<li class="selected"><a href="${ctx }/user/point/record/list">额度流水</a></li>
<li><a href="${ctx}/user/point/record/queryDetail">获取记录</a></li>
</ul>
<div class="clear"></div>
<div class="chaxun">
<form id="search-form" action="${ctx }/user/point/record/list" method="post" class="searchform">
起始时间:<input id="start_date" name="start_date" value="${params.start_date }" />
结束时间:<input id="end_date" name="end_date" value="${params.end_date }" />
<button class="chaxun-btn">查询</button>
<input type="hidden" name="_limit" id="_limit" value="${params._limit}">
<input type="hidden" name="_page" id="_page" value="${params._page}"></input>
<input type="hidden" name="page" id="page" value="${params._page}"></input> <input
type="hidden" name="toPage" id="toPage" value="pointRecords"></input> <input
type="hidden" id="url" name="url"/>
</form>
<div class="clear"></div>
</div>
<table border="0" style="border-bottom: 1px solid #ccc; width: 100%;position: relative; margin-bottom: 50px;"
class=" etlistbg entrusttable" cellpadding="0" cellspacing="0">
<thead>
<tr id="head">
<td width="10%">序号</td>
<td width="30%">发生时间</td>
<td width="20%">藏品名称</td>
<td width="10%">发生数量</td>
<td width="10%">发生后数量</td>
<td width="20%">说明</td>
</tr>
</thead>
<tbody>
<c:if test="${empty pointRecord }">
<tr>
<td style="background:#f2f2f2;" colspan="10"><img style="width:65%" src="${ctx }/resource/images/noData.png"></img></td>
</tr>
</c:if>
<c:forEach items="${pointRecord}" var="record" varStatus="index">
<tr style="height:35px;">
<td>${index.index+1}</td>
<td><fmt:formatDate value="${record.createAt}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
<td>${record.otcName}</td>
<td><fmt:formatNumber value="${record.occurCount}" pattern="##.##" minFractionDigits="2" /></td>
<td><fmt:formatNumber value="${record.postCount}" pattern="##.##" minFractionDigits="2" /></td>
<td>${record.remark}</td>
</tr>
</c:forEach>
</tbody>
</table>
<c:if test="${!empty pointRecord }">
<div class="yema" id="pager" style="width:745px;position: absolute; bottom: -15px;right: 0; margin-right: 0;"></div>
</c:if>
</div>
<div class="clear"></div>
</div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>