userFundChange.jsp
3.66 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
<?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/userFundChange.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" data-options="fitColumns:true">
<tr>
<td>起始时间:<input class="easyui-datebox search-input" name="startDate" id="startDate"></input>
</td>
<td>结束时间:<input class="easyui-datebox search-input" name="endDate" id="endDate"></input>
</td>
<td>查询类型:
<select id="cc" class="easyui-combobox search-input" name="type" data-options="editable: false">
<option value="hundsun">柜台</option>
<option value="bank">银行</option>
</select>
</td>
<td>查询对象:
<select id="cc" class="easyui-combobox search-input" name="business" data-options="editable: false">
<option value="1">红冲</option>
<option value="2" selected="selected">蓝补</option>
</select>
</td>
</tr>
<tr>
<td>用户编号:<input class="easyui-textbox search-input" name="fundAccount" id="fundAccount">
</td>
<td>业务类型:
<select class="easyui-combobox search-input" name="bussinessType" data-options="editable: false">
<option value="">全部</option>
<option value="7">客户充值</option>
<option value="8">客户提现</option>
<option value="9">提货包装费</option>
<option value="1">新品配售</option>
<option value="2">再托管配售</option>
<option value="3">申请年佣</option>
<option value="4">冲正</option>
<option value="5">退鉴定费</option>
<option value="6">额度商城配售</option>
</select>
</td>
<td><a href="javascript:userFund.search();"
class="easyui-linkbutton search-button"
data-options="iconCls:'icon-search'">查询</a>
<a href="javascript:userFund.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:'查询结果'">
<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: 'CURR_DATE'">日期</th>
<th data-options="field: 'CURR_TIME'">时间</th>
<th data-options="field: 'FUND_ACCOUNT'">用户编号</th>
<th data-options="field: 'CLIENT_NAME'">用户姓名</th>
<th data-options="field: 'OCCUR_BALANCE'">发生金额</th>
<th data-options="field: 'POST_BALANCE'">发生后金额</th>
<th data-options="field: 'BUSINESS_FLAG', formatter:userFund.formatStatus">操作类型</th>
<th data-options="field: 'REMARK'">备注</th>
</tr>
</thead>
</table>
</div>
</div>
</body>
</html>