trustApply.jsp 4.89 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/trustApply.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:'25%'">
			<form id="search-form" action="/admin/search" method="post">
				<table class="search-table">
					<tr>
						<td>
							藏品代码:<input name="otcCode" class="easyui-textbox search-input">
						</td>
						<td>
							托管状态:
							<select name="applyType" class="easyui-combobox search-input">
								<option value="">全部</option>
								<option value="2">待鉴定</option>
								<option value="3">鉴定不通过</option>
								<option value="4">待入库</option>
							</select>
						</td>
						<td>
							起始日期:<input name="startDate" data-options="formatter:App.formatDate" class="easyui-datebox search-input">
						</td>
						<td>
							结束日期:<input name="endDate" data-options="formatter:App.formatDate" class="easyui-datebox search-input">
						</td>
					</tr>
					<tr>
						<td>
							姓名:<input name="clientName" class="easyui-textbox search-input">
						</td>
						<td>
							联系电话:<input name="telphone" class="easyui-textbox search-input">
						</td>
						<td>
							资金账号:<input name="fundAccount" class="easyui-textbox search-input">
						</td>
						<td>
							网点编号:<input name="code" class="easyui-numberbox search-input">
						</td>
					</tr>
					<tr>
						<td>
							网点名称:<input name="name" class="easyui-textbox search-input">
						</td>
						<td>
							托管申请编号:<input name="applyNo" class="easyui-textbox search-input">
						</td>
						<td>
							内部流转单号:<input name="innercirculatNo" class="easyui-textbox search-input">
						</td>
						<td>
							<a href="javascript:TrustApply.search()" class="easyui-linkbutton search-button" data-options="iconCls:'icon-search'">搜索</a>
							<a href="javascript:TrustApply.export()" class="easyui-linkbutton search-button" data-options="iconCls:'icon-search'">导出</a>
						</td>
					</tr>
				</table>
			</form>
		</div>
		
		<div class="easyui-panel" data-options="height:'70%',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:'id', checkbox:true"></th>
			        	<th data-options="field:'APPLY_NO'">托管申请编号</th>
			        	<th data-options="field:'INNERCIRCULAT_NO'">内部流转单号</th>
			        	<th data-options="field:'CURR_DATE'">当前日期</th>
			        	<th data-options="field:'FUND_ACCOUNT'">资金账户</th>
			        	<th data-options="field:'CLIENT_NAME'">托管人姓名</th>
			        	<th data-options="field:'TELPHONE'">联系电话</th>
			        	<th data-options="field:'ID_NO'">证件号码</th>
			        	<th data-options="field:'OTC_CODE'">藏品代码</th>
			            <th data-options="field:'OTC_NAME'">藏品名称</th>
			            <th data-options="field:'APPLY_COUNT'">申请数量</th>
			            <th data-options="field:'CODE'">网点编号</th>
			            <th data-options="field:'NAME'">网点名称</th>
			            <th data-options="field:'APPLY_DATE'">申请鉴定日期</th>
			        	<th data-options="field:'ACCEPT_DATE'">确认鉴定日期</th>
			        	<th data-options="field:'APPRAISAL_FARE'">鉴定费</th>
			            <th data-options="field:'TRUSTEE_FARE'">挂牌费</th>
			            <th data-options="field:'AUDIT_DATE'">审核日期</th>
			            <th data-options="field:'APPROVAL_COUNT'">鉴定通过数量</th>
			        	<th data-options="field:'BACK_AMOUNT'">退回数量</th>
			        	<th data-options="field:'PRE_IN_AMOUNT'">交易期间入库数量</th>
			        	<th data-options="field:'CBDC_APPLY_DATE'">鉴定日期</th>
			        	<th data-options="field:'STORAGE_DATE'">入库日期</th>
			        	<th data-options="field:'ADDRESSX'">退货地址</th>
			        	<th data-options="field:'MOBILE'">退还电话</th>
			        	<th data-options="field:'ACCEPT_NAME'">退还联系人</th>
			        	<th data-options="field:'REMARK'">备注</th>
			        	<th data-options="field:'APPLY_TYPE', formatter:TrustApply.applyType">申请状态</th>
			        </tr>
			    </thead>
			    <tbody></tbody>
			</table>
		</div>
	</div>
</body>
</html>