1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <%--
- time:2015-03-18 15:40:13
- --%>
- <%@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>${sysIndexLayoutManage.name}</td>
- </tr>
- <tr>
- <th width="20%">布局描述:</th>
- <td>${sysIndexLayoutManage.memo}</td>
- </tr>
- <tr>
- <th width="20%">组织ID:</th>
- <td>${sysIndexLayoutManage.orgId}</td>
- </tr>
- <tr>
- <th width="20%">模版内容:</th>
- <td>${sysIndexLayoutManage.templateHtml}</td>
- </tr>
- <tr>
- <th width="20%">设计模版:</th>
- <td>${sysIndexLayoutManage.designHtml}</td>
- </tr>
- <tr>
- <th width="20%">是否是默认:</th>
- <td>${sysIndexLayoutManage.isDef}</td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|