12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <%--
- time:2015-05-17 22:03:30
- --%>
- <%@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>${atsAttenceCycle.code}</td>
- </tr>
- <tr>
- <th width="20%">名称:</th>
- <td>${atsAttenceCycle.name}</td>
- </tr>
- <tr>
- <th width="20%">周期类型:</th>
- <td>${atsAttenceCycle.type}</td>
- </tr>
- <tr>
- <th width="20%">年:</th>
- <td>${atsAttenceCycle.year}</td>
- </tr>
- <tr>
- <th width="20%">月:</th>
- <td>${atsAttenceCycle.month}</td>
- </tr>
- <tr>
- <th width="20%">周期区间-开始月:</th>
- <td>${atsAttenceCycle.startMonth}</td>
- </tr>
- <tr>
- <th width="20%">周期区间-开始日:</th>
- <td>${atsAttenceCycle.startDay}</td>
- </tr>
- <tr>
- <th width="20%">周期区间-结束月:</th>
- <td>${atsAttenceCycle.endMonth}</td>
- </tr>
- <tr>
- <th width="20%">周期区间-结束日:</th>
- <td>${atsAttenceCycle.endDay}</td>
- </tr>
- <tr>
- <th width="20%">是否默认:</th>
- <td>${atsAttenceCycle.isDefault}</td>
- </tr>
- <tr>
- <th width="20%">描述:</th>
- <td>${atsAttenceCycle.memo}</td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|