|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>选择产品</title>
- <meta HTTP-EQUIV="pragma" CONTENT="no-cache">
- <meta HTTP-EQUIV="expires" CONTENT="0">
- <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>
- .middle {
- border: 2px solid lightgray;
- height: 90px;
- }
-
- .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;
- }
- </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 class="middle">
- <div class="first">
- <div style="margin-top: 25px;margin-left: 20px">
- <span style="display: inline-block">酒店名称:</span>
- <input id="key_word" type="text" style="height: 30px; width: 145px;display: inline-block">
- <span style="display: inline-block;margin-left: 20px">房型名称:</span>
- <input id="room_name" type="text" style="height: 30px; width: 145px;display: inline-block">
- <div style="margin-left:10px;line-height: 29px"
- class="search_btn btn-primary" onclick="searchProduct()">查询
- </div>
- </div>
-
- </div>
- </div>
-
- <!--表单-->
- <div style="margin-top: 20px;">
- <table class="table table-striped table-bordered table-hover center">
- <thead>
- <tr>
- <th class="center" style="text-align: left">酒店</th>
- <th class="center" style="text-align: left">供应商</th>
- <th class="center" style="text-align: left">最早入住时间</th>
- <th class="center" style="text-align: left">房型</th>
- <th class="center" style="text-align: left">预订</th>
- </tr>
- </thead>
- <tbody id="product_list" style="display: none">
- <tr class='tr_list'>
- <td style="text-align: left;">[酒店名称]</td>
- <td style="text-align: left">[供应商]</td>
- <td style="width: 10%;text-align: left">[最早入住时间]</td>
- <td style="text-align: left">[产品名称]</td>
- <td style="text-align: center;width: 10%"><a target="_blank"
- onclick="open_new_path(this)"
- go_path="zz-jd/make_hotel_order.html?hotel_id=[hotel_id]&hotel_name=[hotel_name]&product_name=[product_name]&parent_type=[parent_room_type]&room_type=[room_type]">[预订]</a>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="pageDiv"></div>
- </div>
- </div>
- </div>
- </div>
- </body>
- <script type="text/javascript" src="js/htCommon.js"></script>
- <script type="text/javascript" src="js/chooseProduct.js?v=3"></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>
|