b03ef6845119794f016b2f724141324328cdb878.svn-base
1.96 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
<%@ 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>