balanceDaily.jsp 1.81 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"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html>
<html>
<head>
<jsp:include page="${ctx }/WEB-INF/view/meta.jsp"></jsp:include>
<script type="text/javascript" src="${ctx}/resource/js/user/balanceDaily.js?r=${random}"></script>
</head>
<body>
	<div class="easyui-panel" data-options="fit:true">
		<div class="easyui-panel" style="padding: 10px;"
			data-options="title:'查询日终余额', collapsible:true, width:'100%', height:'20%'">
			<form id="search-form" method="post" accept-charset="UTF-8">
				<table class="search-table">
					<tr>
						<td>查询时间: <input class="easyui-datebox" style="width:160px;" name="queryDate" id="queryDate" data-options="required:true"></input>
						</td>
						<td>&nbsp;</td>
						<td><a href="javascript:balanceDaily.hundsun();"
							class="easyui-linkbutton"
							data-options="iconCls:'icon-search'">查询恒生</a></td>
						<td><a href="javascript:balanceDaily.pnr();"
							class="easyui-linkbutton"
							data-options="iconCls:'icon-search'">查询汇付</a></td>
					</tr>
				</table>
			</form>
		</div>

		<div class="easyui-panel" data-options="height:'80%',title:'查询结果'">
			<table id="data-grid" class="easyui-datagrid" 
				data-options="fitColumns:true, singleSelect: true, fit:true, pagination:true, idField: 'id',
					rownumbers:true, toolbar:'#toolbar',fitColumns:true, selectOnCheck:true, pageSize:20">
				<thead>
			        <tr>
			        	<th data-options="field: 'balance'">总余额</th>
			        	<th data-options="field: 'count'">有余额的人数</th>
			        </tr>
			    </thead>
			</table>
		</div>
	</div>
</body>
</html>