sysGoodsMaintainGet.jsp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <%--
  2. time:2017-06-15 09:45:17
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>SYS_GOODS_MAINTAIN明细</title>
  9. <%@include file="/commons/include/get.jsp"%>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">SYS_GOODS_MAINTAIN详细信息</span>
  19. </div>
  20. <div class="panel-toolbar">
  21. <div class="toolBar">
  22. <div class="group">
  23. <a class="link back" href="list.ht"><span></span>返回</a>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  29. <tr>
  30. <th width="20%">物品编号:</th>
  31. <td>${sysGoodsMaintain.productcode}</td>
  32. </tr>
  33. <tr>
  34. <th width="20%">物品名称:</th>
  35. <td>${sysGoodsMaintain.productname}</td>
  36. </tr>
  37. <tr>
  38. <th width="20%">品牌:</th>
  39. <td>${sysGoodsMaintain.brand}</td>
  40. </tr>
  41. <tr>
  42. <th width="20%">规格:</th>
  43. <td>${sysGoodsMaintain.specification}</td>
  44. </tr>
  45. <tr>
  46. <th width="20%">价格:</th>
  47. <td>${sysGoodsMaintain.price}</td>
  48. </tr>
  49. <tr>
  50. <th width="20%">状态:</th>
  51. <td>
  52. <c:choose>
  53. <c:when test="${sysGoodsMaintain.status eq 1}"><font color="blue">启用</font></c:when>
  54. <c:when test="${sysGoodsMaintain.status eq 0}"><font color="red">停用</font></c:when>
  55. </c:choose>
  56. </td>
  57. </tr>
  58. <tr>
  59. <th width="20%">创建时间:</th>
  60. <td>
  61. <fmt:formatDate value="${sysGoodsMaintain.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/>
  62. </td>
  63. </tr>
  64. <tr>
  65. <th width="20%">创建人:</th>
  66. <td>${sysGoodsMaintain.creator}</td>
  67. </tr>
  68. </table>
  69. </div>
  70. </div>
  71. </body>
  72. </html>