otcentrustSum.jsp 1.78 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/trade/otcentrustSum.js?r=${random}"></script>
<script type="text/javascript" src="${ctx }/resource/js/jquery.cookie.js"></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">
				<table class="search-table">
					<tr>
						<td>
							藏品代码:<input name="otcCode" class="easyui-textbox search-input">
						</td>
						<td>
							藏品名称:<input name="otcName" class="easyui-textbox search-input">
						</td>
						<td>
							<a href="javascript:otcentrustSum.search()" 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" style="height:470px"   
				data-options="fitColumns:true, singleSelect:true, url:'/trade/otcentrustCount'">
				<thead>
					<tr>
					    <th	data-options="field:'OTC_CODE'">藏品代码</th>
						<th	data-options="field:'OTC_NAME'">藏品名称</th>
						<th data-options="field:'TOTAL'">委托人数</th>
					</tr>
				</thead>
				<tbody></tbody>
			</table>
		</div>

	</div>
	
	
</body>
</html>