7197ff5381fa0ff10e7b077ca2561d08688d52e5.svn-base 2.98 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){
					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);
					}
				}
			});
		});
	</script>
</head>
<body>
	<ul class="nav nav-tabs">
		<li><a href="${ctx}/reg/searchinfo/sRegBusCxxx/">接口查询表列表</a></li>
		<li class="active"><a href="${ctx}/reg/searchinfo/sRegBusCxxx/form?id=${sRegBusCxxx.id}">接口查询表<shiro:hasPermission name="reg:searchinfo:sRegBusCxxx:edit">${not empty sRegBusCxxx.id?'修改':'添加'}</shiro:hasPermission><shiro:lacksPermission name="reg:searchinfo:sRegBusCxxx:edit">查看</shiro:lacksPermission></a></li>
	</ul><br/>
	<form:form id="inputForm" modelAttribute="sRegBusCxxx" action="${ctx}/reg/searchinfo/sRegBusCxxx/save" method="post" class="form-horizontal">
		<form:hidden path="id"/>
		<sys:message content="${message}"/>		
		<div class="control-group">
			<label class="control-label">cxdw:</label>
			<div class="controls">
				<form:input path="cxdw" htmlEscape="false" maxlength="200" class="input-xlarge "/>
			</div>
		</div>
		<div class="control-group">
			<label class="control-label">cxsj:</label>
			<div class="controls">
				<input name="cxsj" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate "
					value="<fmt:formatDate value="${sRegBusCxxx.cxsj}" pattern="yyyy-MM-dd HH:mm:ss"/>"
					onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss',isShowClear:false});"/>
			</div>
		</div>
		<div class="control-group">
			<label class="control-label">bcxr:</label>
			<div class="controls">
				<form:input path="bcxr" htmlEscape="false" maxlength="200" class="input-xlarge "/>
			</div>
		</div>
		<div class="control-group">
			<label class="control-label">bcxrzjh:</label>
			<div class="controls">
				<form:input path="bcxrzjh" htmlEscape="false" maxlength="50" class="input-xlarge "/>
			</div>
		</div>
		<div class="control-group">
			<label class="control-label">qxdm:</label>
			<div class="controls">
				<form:input path="qxdm" htmlEscape="false" maxlength="6" class="input-xlarge "/>
			</div>
		</div>
		<div class="form-actions">
			<shiro:hasPermission name="reg:searchinfo:sRegBusCxxx:edit"><input id="btnSubmit" class="btn btn-primary" type="submit" value="保 存"/>&nbsp;</shiro:hasPermission>
			<input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
		</div>
	</form:form>
</body>
</html>