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.
 
 
 
 

110 lines
4.5 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>渠道商列表</title>
  6. <link rel="stylesheet" href="css/ace.min.css" />
  7. <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
  8. <link rel="stylesheet" href="css/bootstrap.min.css" />
  9. <link rel="stylesheet" href="css/master.css" charset="UTF-8">
  10. <link rel="stylesheet" href="css/Page.css" />
  11. <link rel="stylesheet" type="text/css" href="css/main.css" />
  12. <link rel="stylesheet" href="css/channel_list.css" />
  13. <link rel="stylesheet" type="text/css" href="css/new_page.css"/>
  14. </head>
  15. <body>
  16. <!--<div class="navbar navbar-default" style="margin-bottom: 0px;">
  17. <div class="navbar-header ">
  18. <a href="#" class="navbar-brand">
  19. <i class="icon-leaf"></i> CS System<sub style="font-size:12px;position: initial;">&nbsp;<span id="version_txt"></span></sub>
  20. </a>
  21. </div>
  22. </div>
  23. <div id="show_html" style="display:none;" class="warp clearfix">
  24. <div class="control-bar"> </div>
  25. <div class="control-show" style="float: left;">-->
  26. <div id="" class="iframe_box">
  27. <div class="title_top_layer">渠道商搜索</div>
  28. <div class="search_supplier">
  29. <span style="margin-left: 20px;">名称:</span>
  30. <span>
  31. <input style="font-size: 13px;" id="supplier_name" type="text" placeholder="渠道商名称" />
  32. </span>
  33. <span style="margin-left: 50px;">销售范围:</span>
  34. <span>
  35. <select id="select_supplier" style="margin-right: 10px;width:150px;">
  36. <option value="-1">请选择</option>
  37. <option value="310">巴士</option>
  38. <option value="25">酒店</option>
  39. <option value="311">门票</option>
  40. </select>
  41. </span>
  42. <span style="margin-left: 60px;">状态:</span>
  43. <span>
  44. <select id="select_status" style="margin-right: 10px;width:150px;">
  45. <option value="-1">请选择</option>
  46. <option value="0">正常</option>
  47. <option value="1">关闭</option>
  48. </select>
  49. </span>
  50. <span class="btn-primary" id="search_btn" onclick='searchInfo()'>查询</span>
  51. </div>
  52. <div style="margin-top: 20px;">
  53. <span class="btn-primary" id="add_supplier" onclick="addSelect()">+ 添加渠道商</span>
  54. <span class="btn-primary start_stop" id="start_btn" style="margin-left: 35px;" onclick="startSelect()">启用</span>
  55. <span class="btn-primary start_stop" id="stop_btn" style="margin-left: 10px;" onclick="stopSelect()">停用</span>
  56. </div>
  57. <div class="row">
  58. <div class="col-xs-12">
  59. <div class="table-responsive">
  60. <table id="sample-table-1" class="table table-striped table-bordered table-hover">
  61. <thead>
  62. <tr>
  63. <th class="list_middle" width="40px">
  64. <input type="checkbox" name="all_check_box" id="all_check_box" value="" class="ace_check" onclick="select_checked('0')"/>
  65. </th>
  66. <th class="list_middle" width="300px">名称</th>
  67. <th class="list_middle" width="160px">区域</th>
  68. <th class="list_middle" width="160px">经营性质</th>
  69. <th class="list_middle" width="280px">销售范围</th>
  70. <th class="list_middle" width="140px">状态</th>
  71. <th class="list_middle" width="160px">操作</th>
  72. </tr>
  73. </thead>
  74. <tbody id="list">
  75. <tr class="list_info" id="list_info">
  76. <td class="list_middle" >
  77. <input type="checkbox" onclick="select_checked('1')" name="[oneCheckName]" id="[oneCheck]" class="ace_check" />
  78. </td>
  79. <td class="list_middle">[名称]</td>
  80. <td class="list_middle">[区域]</td>
  81. <td class="list_middle">[经营性质]</td>
  82. <td class="list_middle">[销售范围]</td>
  83. <td class="list_middle" id="[userid_style]">[状态]</td>
  84. <td class="list_middle">[操作]</td>
  85. </tr>
  86. </tbody>
  87. </table>
  88. </div>
  89. <!-- /.table-responsive -->
  90. </div>
  91. <!-- /span -->
  92. </div>
  93. <div class="pageDiv"></div>
  94. </div>
  95. </body>
  96. <script src="js/jquery-2.2.4.min.js" type="text/javascript" charset="utf-8"></script>
  97. <script src="js/base_path.js" type="text/javascript" charset="utf-8"></script>
  98. <script src="js/jquery.cookie.js"></script>
  99. <!--<script src="js/xm.js"></script>-->
  100. <script src="js/jquery.page.js" type="text/javascript" charset="utf-8"></script>
  101. <!--<script>
  102. login();
  103. </script>
  104. <script src="js/master.js" type="text/javascript" charset="utf-8"></script>-->
  105. <script src="js/channel_list.js" type="text/javascript" charset="utf-8"></script>
  106. </html>