|
- <!DOCTYPE html>
- <html>
-
- <head>
- <meta charset="UTF-8">
- <link rel="stylesheet" href="css/master.css" charset="UTF-8">
- <link rel="stylesheet" href="css/ace.min.css" />
- <link rel="stylesheet" href="css/bootstrap.min.css" />
- <link rel="stylesheet" href="css/font-awesome.min.css" charset="UTF-8">
-
-
-
- <script src="js/jquery-2.2.4.min.js" type="text/javascript" charset="utf-8"></script>
-
- <script src="js/Page.js" type="text/javascript" charset="utf-8"></script>
- <link rel="stylesheet" href="css/Page.css" />
-
- <script src="js/jquery.cookie.js"></script>
- <!--<script src="js/xm.js"></script>
- <script>
- login();
- </script>-->
- <style type="text/css">
- body {
- /*padding-bottom: 0;
- background-color: #e4e6e9;*/
- /*min-height: 100%;*/
- font-family: 'Open Sans';
- font-size: 13px;
- /*color: #393939;*/
- line-height: 1.5;
- }
-
- .navbar {
- margin-left: 0;
- margin-right: 0;
- box-shadow: none;
- margin: 0;
- padding-left: 0;
- padding-right: 0;
- background: #438eb9;
- width: 100%;
- }
-
- .navbar-default .navbar-brand {
- color: white;
- }
- </style>
-
- <title> 酒店产品</title>
- </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 id="show_html" style="display:none;" class="warp clearfix">
- <div class="control-bar">
-
- </div>
- <div class="control-show">-->
- <div id="">
- <div>
- <div style="margin-top: 40px; margin-left: 40px;">
- <span>关键字:
- <input type="text" id="keywords" name="keywords" placeholder="输入酒店产品名称" style="width: 180px; height: 30px;font-size: 13px;"/>
- </span>
- <span style="padding-left: 35px;">上架状态:
- <select name="if_onSale" id="if_onSale" style="width:100px;" >
- <option value="1">上架</option>
- <option value="0">下架</option>
-
- </select>
- </span>
- <span id="addBtn" onclick='search()' style="margin-left: 60px; 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;">查询</span>
- </div>
- <div style="margin-top: 30px;margin-left: 40px;">
- <span id="addBtn" onclick='up_on_sale()' style=" width: 80px;height: 30px; display: inline-block;line-height: 30px;border:1px solid rgb(204,204,204); text-align: center;background-color: white;cursor:pointer;">上架</span>
- <span id="downBtn" onclick='down_on_sale()' style="margin-left: 10px; width: 80px;height: 30px; display: inline-block;line-height: 30px;border:1px solid rgb(204,204,204); text-align: center;background-color: white;cursor:pointer;">下架</span>
- <span id="delBtn" onclick='del_product()' style="margin-left: 10px; width: 80px;height: 30px; display: inline-block;line-height: 30px;border:1px solid rgb(204,204,204); text-align: center;background-color: white;cursor:pointer;">删除</span>
-
- </div>
- <div class="row" style="margin-top: 15px; margin-left: 30px; width: 800px;">
- <div class="col-xs-12">
- <div class="table-responsive">
- <table id="sample-table-1" class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th width="10px">
- <input type="checkbox" name="all_check_box" id="all_check_box" value="" class="ace_check" onclick="select_checked('0')"/>
- </th>
- <th width="150px">名称</th>
- <th width="150px">供应商</th>
- <th width="70px">支付方式</th>
- <th width="70px">上下架</th>
- <th width="140px">操作</th>
- </tr>
- </thead>
- <tbody id="one">
- <tr class="parent" id="row" style="display: none;">
- <td><input type="checkbox" onclick="select_checked('1')" name="oneCheck1" id="oneCheck" class="ace_check" /></td>
- <td>[名称]</td>
- <td></td>
- <td></td>
- <td></td>
- <td><a style="margin-left: 10px;" href="#" onclick="add_product_by_hotel(this.id)" name="[addName]" class="addInfo" id="[addInfo]">添加产品</a></td>
- </tr>
- <tr class="child-row" id="two" style="display: none;">
- <td></td>
- <td> [row名称]</td>
- <td>[row供应商]</td>
- <td>[row支付方式]</td>
- <td>[row已售]</td>
- <td>[row操作]
-
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <!-- /.table-responsive -->
- </div>
- <!-- /span -->
- </div>
- <div id="test" style="margin-right: -20px;">
-
- </div>
- </div>
-
- </div>
- <!--</div>-->
-
- </body>
- <!--<script src="js/master.js"></script>-->
- <script src="js/hotel_list.js" type="text/javascript" charset="utf-8"></script>
- <script src="js/base_path.js" type="text/javascript" charset="utf-8"></script>
-
-
-
-
- </html>
|