demensionGet.jsp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%--
  2. time:2011-11-08 12:04:22
  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. <%@include file="/commons/include/form.jsp" %>
  11. </head>
  12. <body>
  13. <div class="panel">
  14. <div class="panel-top">
  15. <div class="tbar-title">
  16. <span class="tbar-label">维度信息明细</span>
  17. </div>
  18. <c:if test="${canReturn==0}">
  19. <div class="panel-toolbar">
  20. <div class="toolBar">
  21. <div class="group">
  22. <a class="link back" href="list.ht"><span></span>返回</a>
  23. </div>
  24. </div>
  25. </div>
  26. </c:if>
  27. </div>
  28. <div class="panel-body">
  29. <form id="demensionForm" method="post" action="save.ht">
  30. <table class="table-detail" cellpadding="0" cellspacing="0"
  31. border="0">
  32. <tr>
  33. <th width="25%">维度名称:</th>
  34. <td>${demension.demName}</td>
  35. </tr>
  36. <tr height="40px">
  37. <th width="20%">维度描述:</th>
  38. <td>${demension.demDesc}</td>
  39. </tr>
  40. </table>
  41. </form>
  42. </div>
  43. </div>
  44. </body>
  45. </html>