sysBulletinColumnGet.jsp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <title>公告栏目明细</title>
  6. <%@include file="/commons/include/form.jsp"%>
  7. </head>
  8. <body>
  9. <div class="panel">
  10. <div class="panel-top">
  11. <div class="tbar-title">
  12. <span class="tbar-label">公告栏目明细</span>
  13. </div>
  14. <div class="panel-toolbar">
  15. <div class="toolBar">
  16. <div class="group">
  17. <a class="link back" href="list.ht"><span></span>返回</a>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="panel-body">
  23. <form id="sysBulletinColumnForm" method="post" action="save.ht">
  24. <table class="table-detail" cellpadding="0" cellspacing="0"
  25. border="0">
  26. <tr>
  27. <th width="20%">栏目名字:</th>
  28. <td>
  29. ${sysBulletinColumn.name}
  30. </td>
  31. </tr>
  32. <tr>
  33. <th width="20%">栏目别名:</th>
  34. <td>
  35. ${sysBulletinColumn.alias}
  36. </td>
  37. </tr>
  38. <tr>
  39. <th width="20%">所属部门:</th></th>
  40. <td>
  41. <c:choose>
  42. <c:when test="${sysBulletinColumn.tenantid eq 0}">所有公司</c:when>
  43. <c:otherwise>${sysBulletinColumn.tenantname}</c:otherwise>
  44. </c:choose>
  45. </td>
  46. </tr>
  47. <tr>
  48. <th width="20%">是否可用:</th>
  49. <td>
  50. <c:choose>
  51. <c:when test="${sysBulletinColumn.status eq 1}">可用</c:when>
  52. <c:otherwise>不可用</c:otherwise>
  53. </c:choose>
  54. </td>
  55. </tr>
  56. <tr>
  57. <th width="20%">创建人:</th></th>
  58. <td>
  59. ${sysBulletinColumn.creator}
  60. </td>
  61. </tr>
  62. <tr>
  63. <th width="20%">创建时间:</th></th>
  64. <td>
  65. <fmt:formatDate value="${sysBulletinColumn.createtime}" pattern="yyyy-MM-dd" />
  66. </td>
  67. </tr>
  68. </table>
  69. </form>
  70. </div>
  71. </div>
  72. </body>
  73. </html>