|
- <!DOCTYPE html>
- <html lang="en">
- <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" href="css/new_page.css"/>
- <style>
- .searchHotel {
- border-bottom: solid 1px lightgrey;
- vertical-align: middle;
- height: 40px;
- font-size: larger
- }
-
- .search_btn {
- width: 80px;
- height: 30px;
- display: inline-block;
- line-height: 30px;
- border: 1px solid rgb(204, 204, 204);
- text-align: center;
- background-color: lightgray;
- cursor: pointer;
- margin-left: 20px;
- }
-
- .block {
- margin-top: 20px;
- }
-
- .add {
- display: inline-block;
- width: 70px;
- height: 24px;
- margin-left: 3px;
- border: 1px solid #ccc;
- line-height: 23px;
- text-align: center;
- cursor: pointer;
- }
-
- .middle {
- border: 2px solid lightgray;
- height: 90px;
- }
-
- .middle_2 {
- margin-top: 20px;
- }
- </style>
- </head>
- <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="iframe_box">
- <!--<div>-->
- <!--<div class="block" style="margin-left: 20px;">-->
- <!--<div class="searchHotel">基本信息</div>-->
- <!--</div>-->
- <!--<!–<div class="save btn-primary add" onclick="batch_change_status(2)"–>-->
- <!--<!–style="margin-left: 40px;width: 100px;height: 30px;line-height: 27px;border-radius: 4px">酒店停售–>-->
- <!--<!–</div>–>-->
- <!--<!–<div class="save btn-primary add" onclick="batch_change_status(3)"–>-->
- <!--<!–style="margin-left: 40px;width: 100px;height: 30px;line-height: 27px;border-radius: 4px">酒店开售–>-->
- <!--<!–</div>–>-->
- <!--</div>-->
- <div class="middle">
- <div class="first">
- <div class="block" style="margin-left: 20px;margin-top: 30px">
- <div style="margin-left: 20px;display: inline-block">酒店名称:</div>
- <input id="hotel_name" style="width: 250px;height: 30px;" placeholder="请输入酒店名称"/>
- <div class="search_btn btn-primary" onclick="getHotelList()">查询</div>
-
- </div>
-
- </div>
- </div>
- <div class="middle_2">
- <div style="margin-left: 0px;" class="search_btn btn-primary" id="add_new_hotel"
- >+ 添加酒店
- </div>
- </div>
-
- <div class="block">
- <table id="table" width="950px" class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th width="35px" class="center">
- <label>
- <input type="checkbox" class="ace check_box_main">
- <span class="lbl"></span>
- </label>
- </th>
- <th width="240">酒店名称</th>
- <th width="90">星级</th>
- <th width="150">城市</th>
- <th width="">地址</th>
- <!--<th>状态</th>-->
- <th style="text-align: left;width: 100px">操作</th>
- </tr>
- </thead>
- <tbody id="data-tbody" style="display: none">
- <tr class="data-tr">
- <th width="35px" class="center">
- <label>
- <input type="checkbox" class="ace check_box" name="check_box_child">
- <span class="lbl"></span>
- </label>
- </th>
- <td>[酒店名称]</td>
- <td>[星级]</td>
- <td>[城市]</td>
- <td>[地址]</td>
- <!--<td>[状态]</td>-->
- <td style="text-align: left">[操作]</td>
- </tr>
- </tbody>
- </table>
- <div class="pageDiv" style="float: right"></div>
- </div>
- </div>
- <!--</div>
- </div>-->
- </body>
- <script type="text/javascript" src="js/htCommon.js"></script>
- <script type="text/javascript" src="js/hotel_list.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>
|