roleModuleSet.jsp
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page language="java" pageEncoding="GB2312" contentType="text/html;charset=GB2312" %>
  2. <%@ include file="/common/taglibs.jsp"%>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
  4. <html>
  5. <head>
  6. <%@ include file="/common/meta.jsp"%>
  7. <title>角色管理</title>
  8. <style>
  9. div#firstdiv{
  10. text-align:center
  11. width:200;
  12. border-width:1px bolid;
  13. }
  14. </style>
  15. <link href='<c:url value="/sys/css/css.css"/>' type="text/css" rel="stylesheet">
  16. <script language="javascript">
  17. <!--
  18. function goPage(form) {
  19. form.action = '<c:url value="/sys/sysuserrole/searchSysuserrole.html"/>';
  20. form.method.value = "";
  21. form.onsubmit = "";
  22.     form.submit();
  23. }
  24. //-->
  25. </script>
  26. </head>
  27. <body  leftmargin=0 topmargin=0 marginheight="0" marginwidth="0">
  28. <!-- 主要内容 start -->
  29. <div id="firstdiv">
  30. <html:form action="/sys/sysuserrole/searchSysuserroleModule.html">
  31. <html:hidden property="id"/>
  32. <html:hidden property="pageCurrent"/>
  33. <input type="hidden" name="method" value="setSysuserroleModules">
  34. <input type="hidden" name="set" value="set">
  35.         <!-- 操作 start -->
  36. <div>&nbsp;角色信息</div>
  37. <div>角色名称:<c:out value="${sysuserroleForm.name}"/></div>
  38. <div>模块列表:</div>
  39. <c:forEach var="module" items="${moduleList}">
  40. <c:if test="${module.revisable == 1}">
  41.   <input type="checkbox" name="sysusermoduleIds" value="<c:out value="${module.id}"/>" 
  42.   <c:forEach var="rolemodule" items="${sysuserroleForm.sysusermoduleIds}">
  43.   <c:if test="${module.id == rolemodule}"><c:out value="checked"/></c:if>
  44.   </c:forEach>
  45.   <c:if test="${roleForm.revisable == 0 && module.revisable == 0}">onclick="return false;"</c:if>
  46.   ><c:out value="${module.name}"/><br>
  47. </c:if>
  48. </c:forEach>
  49. <div>
  50. <input type="submit" style="width:60px" value=" 确定 " class="button" <c:if test="${isGuest}">disabled</c:if>> 
  51. <input type="button" style="width:60px" value=" 取消 " class="button" onclick="goPage(this.form);">
  52. </div>
  53. <!-- 操作 end -->
  54. </html:form>
  55. <!-- 主要内容 end -->
  56. </div>
  57. </body>
  58. </html>