Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

166 lignes
5.3 KiB

  1. <!--
  2. 作者:fudr
  3. 时间:2016-10-09
  4. 描述:酒店日志
  5. -->
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <meta charset="UTF-8">
  10. <meta HTTP-EQUIV="pragma" CONTENT="no-cache">
  11. <meta HTTP-EQUIV="expires" CONTENT="0">
  12. <title>酒店日志</title>
  13. <link rel="stylesheet" type="text/css" href="./css/ace.min.css"/>
  14. <link rel="stylesheet" type="text/css" href="./css/bootstrap/bootstrap.min.css"/>
  15. <link rel="stylesheet" type="text/css" href="./css/bootstrap-timepicker.css"/>
  16. <link rel="stylesheet" type="text/css" href="./css/font-awesome.min.css"/>
  17. <link rel="stylesheet" type="text/css" href="./css/daterangepicker.css"/>
  18. <link rel="stylesheet" type="text/css" href="./css/datepicker.css"/>
  19. <link rel="stylesheet" type="text/css" href="./css/master.css">
  20. <link rel="stylesheet" type="text/css" href="./css/Page.css">
  21. <style type="text/css">
  22. sup {
  23. top: -1.5em;
  24. left: 1.5em;
  25. }
  26. .addbackground {
  27. background-color: #666 !important;
  28. }
  29. .xiala {
  30. width: 180px;
  31. height: 150px;
  32. margin-left: 0px;
  33. border: 1px solid #ccc;
  34. overflow: auto;
  35. position: absolute;
  36. background-color: #fff;
  37. z-index: 2;
  38. }
  39. .hide1 {
  40. display: none;
  41. }
  42. .get_dark {
  43. background-color: #f3f3f3;
  44. }
  45. .content {
  46. border-bottom: 1px solid #ccc;
  47. padding: 5px;
  48. cursor: pointer;
  49. }
  50. .search_btn {
  51. width: 70px;
  52. height: 30px;
  53. border: 1px solid #CCCCCC;
  54. line-height: 30px;
  55. text-align: center;
  56. display: inline-block;
  57. margin-left: 15px;
  58. }
  59. .log_box {
  60. width: 1225px;
  61. margin: 40px 0px 0px 40px;
  62. }
  63. .log_box_top {
  64. width: 1000px;
  65. height: 60px;
  66. }
  67. .dis {
  68. display: inline-block;
  69. vertical-align: top;
  70. }
  71. .play {
  72. height: 30px;
  73. width: 50px;
  74. line-height: 30px;
  75. }
  76. .play_time {
  77. height: 30px;
  78. width: 80px;
  79. line-height: 30px;
  80. text-align: center;
  81. }
  82. </style>
  83. </head>
  84. <body>
  85. <!--<div class="navbar navbar-default" style="margin-bottom: 0px;">
  86. <div class="navbar-header ">
  87. <a href="#" class="navbar-brand">
  88. <i class="icon-leaf"></i> CS System<sub style="font-size:12px;position: initial;">&nbsp;<span id="version_txt"></span></sub>
  89. </a>
  90. </div>
  91. </div>
  92. <div class="warp clearfix" id="show_html" style="display: none">
  93. <div class="control-bar" ></div>
  94. <div class="control-show" style="float: left;">-->
  95. <div class="log_box">
  96. <div class="log_box_top">
  97. <div class="dis play">操作人</div>
  98. <div class="dis">
  99. <select id="operator" style="width: 150px;">
  100. <option value="0" selected="selected" style="font-size: 12px;">全部</option>
  101. </select>
  102. </div>
  103. <div class="dis play_time">操作时间:</div>
  104. <input type="text" id="start_date" class="Wdate"
  105. style="height: 30px; width: 145px;display: inline-block"
  106. name="end"
  107. onClick="WdatePicker({doubleCalendar:true,errDealMode:0,alwaysUseStartDate:true})"/>
  108. <div style="margin: 4px 5px;" class="dis"> —</div>
  109. <input type="text" id="end_date" class="Wdate" style="height: 30px; width: 145px;display: inline-block"
  110. name="end"
  111. onClick="WdatePicker({doubleCalendar:true,errDealMode:0,alwaysUseStartDate:true})"/>
  112. <div style="" class="search_btn btn-primary" onclick="getLogInfo()">搜索
  113. </div>
  114. </div>
  115. <div class="">
  116. <div class="table-responsive " style="width: 800px; ">
  117. <table id="orderTable " class="table table-striped table-bordered table-hover ">
  118. <thead>
  119. <tr>
  120. <!--<th class="center " style="width: 30px; "><label><input class="ace " onclick="select_checked(0) " type="checkbox "><span class="lbl "></span></label></th>-->
  121. <th style="width: 90px; ">房型</th>
  122. <th style="width: 90px; ">操作人</th>
  123. <th style="width: 120px; ">操作时间</th>
  124. <th style="width: 150px; ">操作内容</th>
  125. </tr>
  126. </thead>
  127. <tbody id="tableOrder">
  128. <tr id='123'>
  129. <td style="width: 120px; ">湖景大床房</td>
  130. <td style="width: 120px; ">操作人</td>
  131. <td style="width: 150px; ">操作时间</td>
  132. <td style="width: 74px; ">操作内容</td>
  133. </tr>
  134. </tbody>
  135. </table>
  136. </div>
  137. </div>
  138. </div>
  139. <!--</div>
  140. </div>-->
  141. </body>
  142. <script type="text/javascript " src="js/htCommon.js "></script>
  143. <script language="javascript" type="text/javascript" src="My97DatePicker/WdatePicker.js"></script>
  144. <script type="text/javascript " src="js/operation_log.js "></script>
  145. <!--<script type="text/javascript" src="js/xm.js"></script>
  146. <script src="js/master.js" type="text/javascript" charset="utf-8"></script>
  147. <script>
  148. login();
  149. </script>-->
  150. </html>