dictionary_view.jsp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  4. <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <title>查看数据字典</title>
  9. <link
  10. href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css"
  11. rel="stylesheet" type="text/css" />
  12. <link href="/shares/xheditor/xheditor-1.1.14/demos/common.css"
  13. rel="stylesheet" type="text/css" media="screen" />
  14. <link href="/shares/css/yw/tms/task.css" rel="stylesheet"
  15. type="text/css" />
  16. <link href="${pageContext.request.contextPath }/main.css"
  17. rel="stylesheet" type="text/css" />
  18. <script
  19. src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js"
  20. type="text/javascript"></script>
  21. <script
  22. src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/core/base.js"
  23. type="text/javascript"></script>
  24. <style type="text/css">
  25. .l-table-edit-text {
  26. width: 100px;
  27. font-weight: bold;
  28. color: #cc000
  29. }
  30. .default-select {
  31. width: 500px;
  32. height: 22px;
  33. line-height: 22px;
  34. }
  35. .short-select {
  36. width: 273px;
  37. height: 22px;
  38. line-height: 22px;
  39. }
  40. .default-text {
  41. width: 270px;
  42. height: 22px;
  43. line-height: 22px
  44. }
  45. .short-text {
  46. width: 270px;
  47. line-height: 22px;
  48. height: 22px;
  49. }
  50. .l-text{
  51. width: 270px;
  52. line-height: 22px;
  53. height: 22px;
  54. }
  55. .text {
  56. height: 22px;
  57. line-height: 22px;
  58. margin-right: 10px;
  59. display: inline-block;
  60. margin-left: 1px
  61. }
  62. .title {
  63. font-size: 20px;
  64. font-weight: bold;
  65. padding-bottom: 20px;
  66. padding-left: 5px;
  67. border-bottom: 1px solid #ededed;
  68. vertical-align: middle;
  69. }
  70. .l-table-edit-td{
  71. width:270px;
  72. }
  73. .l-table-edit-text{
  74. width:89px;
  75. }
  76. .forum-container-2 .l-table-edit-text{
  77. width:99px;
  78. }
  79. .projectTable{margin: 5px}
  80. .projectTable tr{height: 25px; padding-bottom: 2px; margin: 10px auto}
  81. .projectTable .left-text {width: 80px; }
  82. </style>
  83. </head>
  84. <body>
  85. <div>
  86. <div class="forum-container-2" style="overflow: hidden;">
  87. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed;">
  88. <thead>
  89. <tr>
  90. <th colspan="4">
  91. <div class="l-table-edit line">数据字典信息</div>
  92. </th>
  93. </tr>
  94. </thead>
  95. <tr>
  96. <td class="l-table-edit-text">父类名称:</td>
  97. <td class="l-table-edit-td" colspan="3">
  98. ${map.p_dname }
  99. </td>
  100. </tr>
  101. <tr>
  102. <td class="l-table-edit-text">名称:</td>
  103. <td class="l-table-edit-td" colspan="3">
  104. ${map.dname }
  105. </td>
  106. </tr>
  107. <tr>
  108. <td class="l-table-edit-text">值:</td>
  109. <td class="l-table-edit-td" colspan="3">
  110. ${map.dvalue }
  111. </td>
  112. </tr>
  113. <tr>
  114. <td class="l-table-edit-text">代码:</td>
  115. <td class="l-table-edit-td" colspan="3">
  116. ${map.code }
  117. </td>
  118. </tr>
  119. </table>
  120. </div>
  121. </div>
  122. </body>
  123. </html>