463d3c49857720083cd001be63da8d4e4e4a7864.svn-base 3.2 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>收费信息管理</title>
	<meta name="decorator" content="default"/>
	<script type="text/javascript">
		$(document).ready(function() {
			
		});
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }
	</script>
</head>
<body>
	<ul class="nav nav-tabs">
		<li class="active"><a href="${ctx}/reg/bus/regBusSf/list?ywh=${ywh}&djlx=${djlx}">收费信息列表</a></li>
		<c:if test="${ised ne '1'}">
			<shiro:hasPermission name="reg:bus:regBusSf:edit">
				<li><a href="${ctx}/reg/bus/regBusSf/form?ywh=${ywh}&YSDM=6004040000&tzrxm=${tzrxm}&djlx=${djlx}">收费信息添加</a></li>
			</shiro:hasPermission>
		</c:if>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusSf" action="${ctx}/reg/bus/regBusSf/list?ywh=${ywh}&tzrxm=${tzrxm}" method="post" class="breadcrumb form-search">
		<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
		<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
		<ul class="ul-form">
			<li><label>业务号:</label>
				<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
			</li>
			<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	<sys:message content="${message}"/>
	<table id="contentTable" class="table table-striped table-bordered table-condensed">
		<thead>
			<tr>
				<th>业务号</th>
				<th>计费人员</th>
				<th>计费日期</th>
				<th>收费人员</th>
				<th>收费日期</th>
				<th>付费方</th>
				<th>实际付费人</th>
				<th>收费单位</th>
				<th>更新时间</th>
				<th>备注信息</th>
				<c:if test="${empty LISTVIEWS}">
				<shiro:hasPermission name="reg:bus:regBusSf:edit"><th>操作</th></shiro:hasPermission>
				</c:if>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusSf">
			<tr>
				<td><a href="#">
					${regBusSf.ywh}
				</a></td>
				<td>
					${regBusSf.jfry}
				</td>
				<td>
					<fmt:formatDate value="${regBusSf.jfrq}" pattern="yyyy-MM-dd"/>
				</td>
				<td>
					${regBusSf.sfry}
				</td>
				<td>
					<fmt:formatDate value="${regBusSf.sfrq}" pattern="yyyy-MM-dd"/>
				</td>
				<td>
					${fns:getDictLabel(regBusSf.fff, 'reg_bus_fffs', '')}
				</td>
				<td>
					${regBusSf.sjffr}
				</td>
				<td>
					${regBusSf.sfdw}
				</td>
				<td>
					<fmt:formatDate value="${regBusSf.updateDate}" pattern="yyyy-MM-dd"/>
				</td>
				<td>
					${regBusSf.remarks}
				</td>
				<c:if test="${empty LISTVIEWS}">
				<shiro:hasPermission name="reg:bus:regBusSf:edit"><td>
					<c:if test="${not empty LISTVIEW}">
    					<a href="${ctx}/reg/bus/regBusSf/form?id=${regBusSf.id}&ywh=${ywh}&tzrxm=${tzrxm}&optype=1">修改</a>
					</c:if>
					<a href="${ctx}/reg/bus/regBusSf/delete?id=${regBusSf.id}&ywh=${ywh}&tzrxm=${tzrxm}" onclick="return confirmx('确认要删除该收费信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
				</c:if>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>