12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <%--
- time:2015-05-16 18:08:43
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>基础数据明细</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">基础数据详细信息</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>${atsBaseItem.code}</td>
- </tr>
- <tr>
- <th width="20%">名称:</th>
- <td>${atsBaseItem.name}</td>
- </tr>
- <tr>
- <th width="20%">地址:</th>
- <td>${atsBaseItem.url}</td>
- </tr>
- <tr>
- <th width="20%">是否系统预置:</th>
- <td>${atsBaseItem.isSys}</td>
- </tr>
- <tr>
- <th width="20%">描述:</th>
- <td>${atsBaseItem.memo}</td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|