|
- <!--
- 作者:fudr
- 时间:2016-10-09
- 描述:操作日志
- -->
- <!DOCTYPE html>
- <html class="no-js" lang="">
-
- <head>
- <meta charset="UTF-8">
- <meta HTTP-EQUIV="pragma" CONTENT="no-cache">
- <meta HTTP-EQUIV="expires" CONTENT="0">
- <title>酒店操作日志</title>
- <link rel="stylesheet" type="text/css" href="./css/ace.min.css"/>
- <link rel="stylesheet" type="text/css" href="./css/bootstrap/bootstrap.min.css"/>
- <link rel="stylesheet" type="text/css" href="./css/bootstrap-timepicker.css"/>
- <link rel="stylesheet" type="text/css" href="./css/font-awesome.min.css"/>
- <link rel="stylesheet" type="text/css" href="./css/daterangepicker.css"/>
- <link rel="stylesheet" type="text/css" href="./css/datepicker.css"/>
- <link rel="stylesheet" type="text/css" href="./css/master.css">
- <link rel="stylesheet" type="text/css" href="./css/Page.css">
-
- </head>
- <style type="text/css">
- sup {
- top: -1.5em;
- left: 1.5em;
- }
-
- .addbackground {
- background-color: #666 !important;
- }
-
- .xiala {
- width: 180px;
- height: 150px;
- margin-left: 0px;
- border: 1px solid #ccc;
- overflow: auto;
- position: absolute;
- background-color: #fff;
- z-index: 2;
- }
-
- .hide1 {
- display: none;
- }
-
- .get_dark {
- background-color: #f3f3f3;
- }
-
- .content {
- border-bottom: 1px solid #ccc;
- padding: 5px;
- cursor: pointer;
- }
-
- .search_btn {
- width: 70px;
- height: 30px;
- border: 1px solid #CCCCCC;
- line-height: 30px;
- text-align: center;
- display: inline-block;
- margin-left: 15px;
- }
-
- .log_box {
- width: 1225px;
- margin: 40px 0px 0px 40px;
-
- }
-
- .log_box_top {
- width: 1000px;
- height: 60px;
-
- }
-
- .dis {
- display: inline-block;
- vertical-align: top;
- }
-
- .play {
- height: 30px;
- width: 50px;
- line-height: 30px;
-
- }
-
- .play2 {
- height: 30px;
- width: 500px;
- line-height: 30px;
- margin-bottom: 30px;
- }
-
- .play_time {
- height: 30px;
- width: 80px;
- line-height: 30px;
- text-align: center;
- }
- </style>
-
- <body>
- <!--<div class="navbar navbar-default" style="margin-bottom: 0px;">
- <div class="navbar-header ">
- <a href="#" class="navbar-brand">
- <i class="icon-leaf"></i> CS System<sub style="font-size:12px;position: initial;"> <span id="version_txt"></span></sub>
- </a>
- </div>
- </div>
- <div class="warp clearfix" id="show_html" style="display: none">
- <div class="control-bar" ></div>
- <div class="control-show" style="float: left;">-->
- <div class="log_box">
- <div class="hotel_name">
- <div class="dis play">酒店</div>
- <div class="dis play2">上海外滩茂悦大酒店</div>
- </div>
-
- <div class="log_box_top">
- <div class="dis play">操作人</div>
- <div class="dis">
- <select id="operator" style="width: 150px;">
- <option value="0" selected="selected" style="font-size: 12px;">全部</option>
- </select>
- </div>
- <div class="dis play_time">操作时间:</div>
- <input type="text" id="start_date" class="Wdate"
- style="height: 30px; width: 145px;display: inline-block"
- name="end"
- onClick="WdatePicker({doubleCalendar:true,errDealMode:0,alwaysUseStartDate:true})"/>
- <div style="margin: 4px 5px;" class="dis"> —</div>
- <input type="text" id="end_date" class="Wdate" style="height: 30px; width: 145px;display: inline-block"
- name="end"
- onClick="WdatePicker({doubleCalendar:true,errDealMode:0,alwaysUseStartDate:true})"/>
- <div style="" class="search_btn btn-primary" onclick="getLogInfo()">搜索
- </div>
- </div>
- <div class="">
- <div class="table-responsive " style="width: 800px; ">
- <table id="orderTable " class="table table-striped table-bordered table-hover ">
- <thead>
- <tr>
- <th style="width: 90px; ">操作人</th>
- <th style="width: 120px; ">操作时间</th>
- <th style="width: 150px; ">操作内容</th>
- </tr>
- </thead>
- <tbody id="tableOrder">
- <tr id='123'>
- <td style="width: 120px; ">操作人</td>
- <td style="width: 150px; ">操作时间</td>
- <td style="width: 74px; ">操作内容</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <!--</div>
- </div>-->
- </body>
-
- <script type="text/javascript " src="js/htCommon.js "></script>
- <script language="javascript" type="text/javascript" src="My97DatePicker/WdatePicker.js"></script>
- <script type="text/javascript " src="js/hotel_log.js "></script>
- <!--<script type="text/javascript" src="js/xm.js"></script>
- <script src="js/master.js" type="text/javascript" charset="utf-8"></script>
- <script>
- login();
- </script>-->
- </html>
|