fundJourDetail.jsp 2.45 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/report/fundJourDetail.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" action="/report/hisFundjour/queryAccount" method="post">
				<table class="search-table">
					<tr>
						<td>会员号:<input name="fundAccount"
							class="easyui-textbox search-input"></td>
						<td>交易日期:<input name="currDate"
							data-options="formatter:App.formatDate"
							class="easyui-datebox search-input"/></td>
						<td>
							业务标志<select id="businessFlag" name="businessFlag"
							class="easyui-combobox search-input"
							data-options="valueField: 'sysKey',textField: 'sysValue'"
							style="width: 200px"></select>
						</td>
						<td><a href="javascript:hisfundjour.search()"
							class="easyui-linkbutton search-button"
							data-options="iconCls:'icon-search'">搜索</a></td>
						<td><a href="javascript:hisfundjour.export()"
							class="easyui-linkbutton search-button"
							data-options="iconCls:'icon-search'">导出</a></td>
					</tr>
				</table>
			</form>
		</div>

		<div class="easyui-panel" data-options="height:'80%',title:'查询结果'">
			<!-- DataGrid -->
			<table id="data-grid" class="easyui-datagrid"
				data-options="fitColumns:true, singleSelect:true, fit:true, pagination:true, 
					rownumbers:true, selectOnCheck:true, pageSize:20">
				<thead>
					<tr>
						<th data-options="field:'CURR_DATE'">交易日期</th>
						<th data-options="field:'CURR_TIME'">交易时间</th>
						<th data-options="field:'SERIAL_NO'">流水序号</th>
						<th data-options="field:'BUSINESS_NAME'">业务标识</th>
						<th data-options="field:'FUND_ACCOUNT'">客户编号</th>
						<th data-options="field:'OCCUR_BALANCE'">发生金额</th>
						<th data-options="field:'POST_BALANCE'">后资金额</th>
						<th data-options="field:'REMARK'">备注</th>
					</tr>
				</thead>
				<tbody></tbody>
			</table>
		</div>
	</div>
</body>
</html>