a10911cc9def7d04c9d0950bdb3883a2bd21f828.svn-base
1.12 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
<%@ 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">
function save(){
window.inputForm.submit();
window.close();
}
</script>
</head>
<body>
<br>
<form:form id="inputForm" modelAttribute="wxOrder" action="${ctx}/wechat/wxOrder/save" method="post" class="form-horizontal">
<form:hidden path="id"/>
<form:hidden path="yydate"/>
<form:hidden path="yyid"/>
<form:hidden path="yylx"/>
<form:hidden path="yysjd"/>
<form:hidden path="yyrmc"/>
<sys:message content="${message}"/>
<div class="control-group">
<label class="control-label">办理窗口:</label>
<div class="controls">
<form:input path="blck" htmlEscape="false" maxlength="64" class="input-small "/>
</div>
</div>
<div class="form-actions">
<shiro:hasPermission name="wechat:wxOrder:view"><input id="btnSubmit" class="btn btn-primary" type="button" value="确 定" onclick="save()"/> </shiro:hasPermission>
</div>
</form:form>
</body>
</html>