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.
 
 
 
 

105 lines
4.2 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>选择产品</title>
  6. <meta HTTP-EQUIV="pragma" CONTENT="no-cache">
  7. <meta HTTP-EQUIV="expires" CONTENT="0">
  8. <link rel="stylesheet" type="text/css" href="./css/ace.min.css"/>
  9. <link rel="stylesheet" type="text/css" href="./css/bootstrap/bootstrap.min.css"/>
  10. <link rel="stylesheet" type="text/css" href="./css/bootstrap-timepicker.css"/>
  11. <link rel="stylesheet" type="text/css" href="./css/font-awesome.min.css"/>
  12. <link rel="stylesheet" type="text/css" href="./css/daterangepicker.css"/>
  13. <link rel="stylesheet" type="text/css" href="./css/datepicker.css"/>
  14. <link rel="stylesheet" type="text/css" href="./css/master.css">
  15. <link rel="stylesheet" href="css/new_page.css"/>
  16. <style>
  17. .middle {
  18. border: 2px solid lightgray;
  19. height: 90px;
  20. }
  21. .search_btn {
  22. width: 80px;
  23. height: 30px;
  24. display: inline-block;
  25. line-height: 30px;
  26. border: 1px solid rgb(204, 204, 204);
  27. text-align: center;
  28. background-color: lightgray;
  29. cursor: pointer;
  30. margin-left: 20px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <!--标题-->
  36. <!--<div class="navbar navbar-default" style="margin-bottom: 0px;">
  37. <div class="navbar-header ">
  38. <a href="#" class="navbar-brand">
  39. <i class="icon-leaf"></i> CS System<sub style="font-size:12px;position: initial;">&nbsp;<span id="version_txt"></span></sub>
  40. </a>
  41. </div>
  42. </div>
  43. <div class="warp clearfix" id="show_html" style="display: none">
  44. <div class="control-bar" ></div>
  45. <div class="control-show" style="float: left;">-->
  46. <div class="iframe_box">
  47. <!--关键词-->
  48. <div class="middle">
  49. <div class="first">
  50. <div style="margin-top: 25px;margin-left: 20px">
  51. <span style="display: inline-block">酒店名称:</span>
  52. <input id="key_word" type="text" style="height: 30px; width: 145px;display: inline-block">
  53. <span style="display: inline-block;margin-left: 20px">房型名称:</span>
  54. <input id="room_name" type="text" style="height: 30px; width: 145px;display: inline-block">
  55. <div style="margin-left:10px;line-height: 29px"
  56. class="search_btn btn-primary" onclick="searchProduct()">查询
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. <!--表单-->
  62. <div style="margin-top: 20px;">
  63. <table class="table table-striped table-bordered table-hover center">
  64. <thead>
  65. <tr>
  66. <th class="center" style="text-align: left">酒店</th>
  67. <th class="center" style="text-align: left">供应商</th>
  68. <th class="center" style="text-align: left">最早入住时间</th>
  69. <th class="center" style="text-align: left">房型</th>
  70. <th class="center" style="text-align: left">预订</th>
  71. </tr>
  72. </thead>
  73. <tbody id="product_list" style="display: none">
  74. <tr class='tr_list'>
  75. <td style="text-align: left;">[酒店名称]</td>
  76. <td style="text-align: left">[供应商]</td>
  77. <td style="width: 10%;text-align: left">[最早入住时间]</td>
  78. <td style="text-align: left">[产品名称]</td>
  79. <td style="text-align: center;width: 10%"><a target="_blank"
  80. onclick="open_new_path(this)"
  81. 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>
  82. </td>
  83. </tr>
  84. </tbody>
  85. </table>
  86. <div class="pageDiv"></div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </body>
  92. <script type="text/javascript" src="js/htCommon.js"></script>
  93. <script type="text/javascript" src="js/chooseProduct.js?v=3"></script>
  94. <script type="text/javascript" src="js/xm.js"></script>
  95. <!--<script src="js/master.js" type="text/javascript" charset="utf-8"></script>
  96. <script>
  97. login();
  98. </script>-->
  99. </html>