userBalance.jsp
2.42 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
<?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/userBalance.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">
<input type="hidden" name="queryResult" id="queryResult" value="1" />
<table class="search-table">
<tr>
<td>用户号:<input name="userId" id="userId" class="easyui-textbox" maxlength="8"></td>
<td>查询时间: <input class="easyui-datebox" data-options="required:true" style="width:160px;" name="data_date" id="data_date"></input>
</td>
<td><label>查询类型:</label><select id="type" class="easyui-combobox"
name="type" style="width: 100px;">
<option value="0">余额不相等</option>
<option value="1">余额不为0</option>
</select></td>
<td><a href="javascript:userBalance.search();"
class="easyui-linkbutton"
data-options="iconCls:'icon-search'">查询</a></td>
<td><a href="javascript:userBalance.download();"
class="easyui-linkbutton"
data-options="iconCls:'icon-search'">查询并导出excel</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, idField: 'id',
rownumbers:true, toolbar:'#toolbar',fitColumns:true, selectOnCheck:true, pageSize:20">
<thead>
<tr>
<th data-options="field:'id', checkbox:true"></th>
<th data-options="field: 'client_id'">会员号</th>
<th data-options="field: 'hundsun'">恒生端余额</th>
<th data-options="field: 'pnr'">汇付端余额</th>
<th data-options="field: 'data_date'">数据日期</th>
</tr>
</thead>
</table>
</div>
</div>
</body>
</html>