batchEntrust.jsp
3.63 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
<?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/trade/batchEntrust.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-textbox search-input" name="fundAccount" />
</td>
<td>
藏品编号:<input class="easyui-textbox search-input" name="otcCode" />
</td>
<td>
起始时间:<input class="easyui-datebox search-input" name="startDate" id="startDate" />
</td>
<td>
结束时间:<input class="easyui-datebox search-input" name="endDate" id="endDate" />
</td>
</tr>
<tr>
<td>
委托类型:
<select name="otcProp" class="easyui-combobox search-input" data-options="editable: false">
<option value="">全部</option>
<option value="0B0">买入</option>
<option value="0S0">卖出</option>
</select>
</td>
<td>
委托接口:
<select name="success" class="easyui-combobox search-input" data-options="editable: false">
<option value="">全部</option>
<option value="0">失败</option>
<option value="1">成功</option>
</select>
</td>
<td>
<a href="javascript:batchEntrust.search();" class="easyui-linkbutton search-button"
data-options="iconCls:'icon-search'">查询</a>
</td>
<td></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: 'opStation'">op station</th>
<th data-options="field: 'currDate'">委托日期</th>
<th data-options="field: 'currTime'">委托时间</th>
<th data-options="field: 'fundAccount'">用户编号</th>
<th data-options="field: 'otcCode'">藏品编号</th>
<th data-options="field: 'otcName'">藏品名称</th>
<th data-options="field: 'otcProp', formatter:batchEntrust.formatOtcProp">委托类型</th>
<th data-options="field: 'entrustPrice'">委托价格</th>
<th data-options="field: 'entrustAmount'">委托数量</th>
<th data-options="field: 'entrustStatus', formatter:batchEntrust.formatEntrustStatus">委托结果</th>
<th data-options="field: 'businessPrice'">成交价格</th>
<th data-options="field: 'businessAmount'">成交数量</th>
<th data-options="field: 'businessBalance'">成交金额</th>
<th data-options="field: 'success', formatter:batchEntrust.formatSuccess">委托接口状态</th>
<th data-options="field: 't2Result', formatter:batchEntrust.formatResult">委托接口结果</th>
</tr>
</thead>
</table>
</div>
</div>
</body>
</html>