atsAttenceCycleGet.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <%--
  2. time:2015-05-17 22:03:30
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>考勤周期明细</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">考勤周期详细信息</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>${atsAttenceCycle.code}</td>
  32. </tr>
  33. <tr>
  34. <th width="20%">名称:</th>
  35. <td>${atsAttenceCycle.name}</td>
  36. </tr>
  37. <tr>
  38. <th width="20%">周期类型:</th>
  39. <td>${atsAttenceCycle.type}</td>
  40. </tr>
  41. <tr>
  42. <th width="20%">年:</th>
  43. <td>${atsAttenceCycle.year}</td>
  44. </tr>
  45. <tr>
  46. <th width="20%">月:</th>
  47. <td>${atsAttenceCycle.month}</td>
  48. </tr>
  49. <tr>
  50. <th width="20%">周期区间-开始月:</th>
  51. <td>${atsAttenceCycle.startMonth}</td>
  52. </tr>
  53. <tr>
  54. <th width="20%">周期区间-开始日:</th>
  55. <td>${atsAttenceCycle.startDay}</td>
  56. </tr>
  57. <tr>
  58. <th width="20%">周期区间-结束月:</th>
  59. <td>${atsAttenceCycle.endMonth}</td>
  60. </tr>
  61. <tr>
  62. <th width="20%">周期区间-结束日:</th>
  63. <td>${atsAttenceCycle.endDay}</td>
  64. </tr>
  65. <tr>
  66. <th width="20%">是否默认:</th>
  67. <td>${atsAttenceCycle.isDefault}</td>
  68. </tr>
  69. <tr>
  70. <th width="20%">描述:</th>
  71. <td>${atsAttenceCycle.memo}</td>
  72. </tr>
  73. </table>
  74. </div>
  75. </div>
  76. </body>
  77. </html>