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.
 
 
 
 

112 lines
3.6 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>选择产品</title>
  6. <link rel="stylesheet" href="css/master.css" />
  7. <link rel="stylesheet" href="css/bootstrap.min.css" />
  8. <link rel="stylesheet" href="css/ace.min.css" />
  9. <link rel="stylesheet" href="css/Page.css" />
  10. <link rel="stylesheet" href="css/font-awesome.min.css" charset="UTF-8">
  11. <script src="js/jquery-2.0.3.min.js" type="text/javascript" charset="utf-8"></script>
  12. <link rel="stylesheet" href="css/font-awesome.min.css" charset="UTF-8">
  13. <script src="js/selectProduct.js" type="text/javascript" charset="utf-8"></script>
  14. <script src="js/Page.js" type="text/javascript" charset="utf-8"></script>
  15. <script src="js/jquery.cookie.js"></script>
  16. <script src="js/base_path.js" type="text/javascript" charset="utf-8"></script>
  17. <!--<script src="js/xm.js"></script>
  18. <script>
  19. login();
  20. </script>-->
  21. </head>
  22. <body style="background:none;">
  23. <!--<div class="navbar navbar-default" style="margin-bottom: 0px;">
  24. <div class="navbar-header ">
  25. <a href="#" class="navbar-brand">
  26. <i class="icon-leaf"></i>
  27. CS System<sub style="font-size:12px;position: initial;">&nbsp;<span id="version_txt"></span></sub>
  28. </a>
  29. </div>
  30. </div>
  31. <div id="show_html" style="display:none;" class="warp clearfix">
  32. <div class="control-bar"></div>
  33. <div class="control-show" style="float: left;">-->
  34. <div id="">
  35. <div style="margin-top: 40px; margin-left: 30px; width: 1200px;">
  36. <!--<span style="padding-left: 10px;">酒店地区:</span>
  37. <span style="padding-left: 10px;"></span>-->
  38. <!--<span>
  39. <select id="select_province" style="width:110px; height: 30px;">
  40. <option value="选择省">选择省</option>
  41. <option value="河南省">河南省</option>
  42. </select>
  43. </span>
  44. <span style="padding-left: 10px;">
  45. <select id="select_cantonal" style="width:110px; height: 30px;">
  46. <option value="选择市">选择市</option>
  47. <option value="上海市">上海市</option>
  48. </select>
  49. </span>-->
  50. <span style="padding-left: 10px;font-size: 13px;">关键字:<input id="keywords" type="text" width="170px" height="30px"/></span>
  51. <span>
  52. <button id="searchBtn" style="width: 90px;height: 30px;margin-left: 30px;">查询</button>
  53. </span>
  54. </div>
  55. <div class="row" style=" margin-top: 30px; margin-left: 30px; width: 900px;">
  56. <div class="col-xs-12">
  57. <div class="table-responsive">
  58. <table id="sample-table-1" class="table table-striped table-bordered table-hover">
  59. <thead>
  60. <tr>
  61. <th style="width: 300px;">名称</th>
  62. <th style="width: 200px;">供应商</th>
  63. <th style="width: 120px;">支付方式</th>
  64. <!--<th style="width: 140px;">已售</th>-->
  65. <th style="width: 150px;">操作</th>
  66. </tr>
  67. </thead>
  68. <tbody id="one">
  69. <tr class="parent" id="row" onclick="click_parent(this.id)" style="display: none;">
  70. <td>[名称]</td>
  71. <td></td>
  72. <td></td>
  73. <!--<td>[已售]</td>-->
  74. <td></td>
  75. </tr>
  76. <tr class="child-row" style="display: none;" id="two">
  77. <td>&nbsp;&nbsp;&nbsp;&nbsp;[row名称]</td>
  78. <td>[row供应商]</td>
  79. <td>[row支付方式]</td>
  80. <!--<td>[row已售]</td>-->
  81. <td>
  82. <a href="#" onclick="pay_order(this.id)" id="[pay_id]">下单</a>
  83. </td>
  84. </tr>
  85. </tbody>
  86. </table>
  87. </div>
  88. <!-- /.table-responsive -->
  89. </div>
  90. </div>
  91. <div id="test" style="margin-left: 300px;">
  92. </div>
  93. </div>
  94. </body>
  95. <!--<script type="text/javascript" src="./js/master.js"></script>-->
  96. </html>