| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "auth");%>
- <%pageContext.setAttribute("currentMenu", "auth");%>
- <%
- String sId = request.getParameter("id");
- if(sId!=null){
- pageContext.setAttribute("currentTitle", "user-process-6");
- }
- else{
- pageContext.setAttribute("currentTitle", "user-process-2");
- }
- %>
- <!doctype html>
- <html>
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>编辑</title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript">
- $(function() {
- $("#role-permForm").validate({
- submitHandler: function(form) {
- bootbox.animate(false);
- var box = bootbox.dialog('<div class="progress progress-striped active" style="margin:0px;"><div class="bar" style="width: 100%;"></div></div>');
- form.submit();
- },
- errorClass: 'validate-error'
- });
- })
- </script>
- </head>
- <body>
- <%@include file="/header/_pim3.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/user.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="glyphicon glyphicon-list"></i>
- 编辑
- </div>
- <div class="panel-body">
- <form id="roleForm" method="post" action="role-perm-save.do" class="form-horizontal">
- <input type="hidden" name="id" value="${id}">
- <c:forEach items="${permTypes}" var="permType">
- <div class="form-group">
- <label class="control-label col-md-1"><strong>${permType.name}:</strong></label>
- <div class="col-sm-5">
- <c:forEach items="${permType.perms}" var="item">
- <input id="selectedItem-${item.id}" type="checkbox" name="selectedItem" value="${item.id}" <tags:contains items="${selectedItem}" item="${item.id}">checked</tags:contains>>
- <label for="selectedItem-${item.id}" style="display:inline;">${item.name}</label>
-
- </c:forEach>
- </div>
- </div>
- </c:forEach>
- <div class="form-group">
- <div class="col-sm-5">
- <button id="submitButton" class="btn btn-primary a-submit"><spring:message code='core.input.save' text='保存'/></button>
-
- <button type="button" onclick="history.back();" class="btn btn-link a-cancel"><spring:message code='core.input.back' text='返回'/></button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|