1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <%--
- time:2017-06-15 09:45:17
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>SYS_GOODS_MAINTAIN明细</title>
- <%@include file="/commons/include/get.jsp"%>
- <script type="text/javascript">
- //放置脚本
- </script>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">SYS_GOODS_MAINTAIN详细信息</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group">
- <a class="link back" href="list.ht"><span></span>返回</a>
- </div>
- </div>
- </div>
- </div>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th width="20%">物品编号:</th>
- <td>${sysGoodsMaintain.productcode}</td>
- </tr>
- <tr>
- <th width="20%">物品名称:</th>
- <td>${sysGoodsMaintain.productname}</td>
- </tr>
- <tr>
- <th width="20%">品牌:</th>
- <td>${sysGoodsMaintain.brand}</td>
- </tr>
- <tr>
- <th width="20%">规格:</th>
- <td>${sysGoodsMaintain.specification}</td>
- </tr>
- <tr>
- <th width="20%">价格:</th>
- <td>${sysGoodsMaintain.price}</td>
- </tr>
- <tr>
- <th width="20%">状态:</th>
- <td>
- <c:choose>
- <c:when test="${sysGoodsMaintain.status eq 1}"><font color="blue">启用</font></c:when>
- <c:when test="${sysGoodsMaintain.status eq 0}"><font color="red">停用</font></c:when>
- </c:choose>
- </td>
- </tr>
- <tr>
- <th width="20%">创建时间:</th>
- <td>
- <fmt:formatDate value="${sysGoodsMaintain.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/>
- </td>
- </tr>
- <tr>
- <th width="20%">创建人:</th>
- <td>${sysGoodsMaintain.creator}</td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|