regBusClhjbatFrom.jsp 1.96 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() {
			//$("#name").focus();
			$("#inputForm").validate({
				submitHandler: function(form){
					document.getElementById("btnSubmit").disabled="disabled";
					loading('正在提交,请稍等...');
					form.submit();
				},
				errorContainer: "#messageBox",
				errorPlacement: function(error, element) {
					$("#messageBox").text("输入有误,请先更正。");
					if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
						error.appendTo(element.parent().parent());
					} else {
						error.insertAfter(element);
					}
				}
			});
		});
		
		function getsave(){
			var xmxq = $("#xmxqtext").val();
			$.ajax({
				type:"POST", 
				url:"${ctx}/reg/bus/regBusClhjFw/saveauditbat",
				cache: false, 
				data:"xmxq="+xmxq,
				async : false,
				success:function(modelmap){
					if(modelmap.success == 0){
						window.close();
						window.opener.location.reload();
				 	}
				}
			});
		}
	</script>
</head>
<body>
	<ul class="nav nav-tabs">
	</ul><br/>
    <form:form id="inputForm" name="inputForms"  modelAttribute="regBusClhjFw" action="#" method="post" class="form-horizontal">
		<form:hidden path="id"/>
		<sys:message content="${message}"/>	
		<fieldset>
			<table class="table-form">
				<tr>
					<td class="tit">项目小区:</td>
					<td>
						<form:input path="xmxq" id="xmxqtext" htmlEscape="false" maxlength="80" class="input-large "/>
					</td>
				</tr>
			</table>
		</fieldset>
		</br>
		
		<div class="form-actions">
			<shiro:hasPermission name="reg:bus:regBusClhjFw:edit">
				<input id="btnSubmit" class="btn btn-primary" type="button"  onclick="getsave()"  value="确定"/>
			</shiro:hasPermission>
		</div>
	</form:form>
</body>
</html>