You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

177 lines
5.1 KiB

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