sysRoleGet.jsp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <%--
  2. time:2011-11-28 11:31:14
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>系统角色明细</title>
  9. <%@include file="/commons/include/getById.jsp" %>
  10. </head>
  11. <body>
  12. <div class="panel">
  13. <div class="panel-top">
  14. <div class="tbar-title">
  15. <span class="tbar-label">系统角色详细信息</span>
  16. </div>
  17. <c:if test="${isOtherLink==0}">
  18. <div class="panel-toolbar">
  19. <div class="toolBar">
  20. <div class="group"><a class="link back" href="../sysRole/list.ht"><span></span>返回</a></div>
  21. </div>
  22. </div>
  23. </c:if>
  24. </div>
  25. <div class="panel-body">
  26. <div class="panel-detail">
  27. <form id="sysRoleForm" method="post" action="add2.ht">
  28. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  29. <tr>
  30. <th width="20%">角色名称:</th>
  31. <td>${sysRole.roleName}</td>
  32. </tr>
  33. <tr>
  34. <th width="20%">子系统名称:</th>
  35. <td>
  36. <c:if test="${not empty subsystem}">
  37. ${subsystem.sysName}
  38. </c:if>
  39. </td>
  40. </tr>
  41. <tr>
  42. <th width="20%">角色别名:</th>
  43. <td>${sysRole.alias}</td>
  44. </tr>
  45. <tr>
  46. <th width="20%">角色类别:</th>
  47. <td>${sysRole.category}</td>
  48. </tr>
  49. <tr>
  50. <th width="20%">备注:</th>
  51. <td>${sysRole.memo}</td>
  52. </tr>
  53. <tr>
  54. <th width="20%">允许删除:</th>
  55. <td>
  56. <c:choose>
  57. <c:when test="${sysRole.allowDel eq 1}">允许</c:when>
  58. <c:when test="${sysRole.allowDel eq 0}">不允许</c:when>
  59. <c:otherwise>未设定</c:otherwise>
  60. </c:choose>
  61. </td>
  62. </tr>
  63. <tr>
  64. <th width="20%">允许编辑:</th>
  65. <td>
  66. <c:choose>
  67. <c:when test="${sysRole.allowEdit eq 1}">允许</c:when>
  68. <c:when test="${sysRole.allowEdit eq 0}">不允许</c:when>
  69. <c:otherwise>未设定</c:otherwise>
  70. </c:choose>
  71. </td>
  72. </tr>
  73. <tr>
  74. <th width="20%">是否启用:</th>
  75. <td>
  76. <c:choose>
  77. <c:when test="${sysRole.enabled eq 1}">启用</c:when>
  78. <c:when test="${sysRole.enabled eq 0}">禁用</c:when>
  79. <c:otherwise>未设定</c:otherwise>
  80. </c:choose>
  81. </td>
  82. </tr>
  83. </table>
  84. </form>
  85. </div>
  86. </div>
  87. </div>
  88. </body>
  89. </html>