Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

159 linhas
5.7 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>修改线路</title>
  6. <!--/模板/-->
  7. <link rel="stylesheet" href="css/master.css" charset="UTF-8">
  8. <link rel="stylesheet" href="css/ace.min.css" />
  9. <link rel="stylesheet" href="css/bootstrap.min.css" />
  10. <link rel="stylesheet" href="css/font-awesome.min.css" charset="UTF-8">
  11. <link rel="stylesheet" href="css/add_line.css" />
  12. </head>
  13. <body>
  14. <!--<div class="navbar navbar-default" style="margin-bottom: 0px;">
  15. <div class="navbar-header ">
  16. <a href="#" class="navbar-brand">
  17. <i class="icon-leaf"></i>
  18. CS System<sub style="font-size:12px;position: initial;">&nbsp;<span id="version_txt"></span></sub>
  19. </a>
  20. </div>
  21. </div>
  22. <div id="show_html" style="display:none;" class="warp clearfix">
  23. <div class="control-bar">
  24. </div>
  25. <div class="control-show">-->
  26. <div id="" class="iframe_box">
  27. <div class="total" id="total">
  28. <div class="title_add">修改线路</div>
  29. <div class="line_top"></div>
  30. <div class="tabbable" >
  31. <div class="profile-user-info profile-user-info-striped" style="margin-top: 20px;">
  32. <!--线路类型-->
  33. <div class="profile-info-row">
  34. <div class="profile-info-name">线路类型:</div>
  35. <div class="profile-info-value">
  36. <span>
  37. <input type="radio" disabled="true" name="bar_style" id="bar_style_z" value="0" />直通巴士
  38. </span>
  39. <span style="padding-left: 25px;">
  40. <input type="radio" disabled="true" name="bar_style" id="bar_style_c" value="1" />穿梭巴士
  41. </span>
  42. </div>
  43. </div>
  44. <!--添加站点-->
  45. <div class="profile-info-row">
  46. <div class="profile-info-name" id="" onclick="addOneLine()">添加站点:</div>
  47. <div class="profile-info-value">
  48. <div id="get_list">
  49. <span>
  50. <input class="line_list" name="line_list" type="text" id="line_list" oninput="lineListSearch(this.value)" placeholder="填写名称从下拉框中选择" style="font-size: 13px;">
  51. <div id="line_name_search" style="width:180px; border:1px solid #ccc; border-top:none; height:85px; overflow-y:scroll; position:absolute; z-index:10; background:#fff; display: none;" >
  52. </div>
  53. <input type="hidden" name="station_select" id="station_select" />
  54. </span>
  55. <span class="add_btn btn-primary" id="addBtn" onclick="addOneLine()">+添加</span>
  56. </div>
  57. <div class="row" style="margin-top: 20px;">
  58. <div class="col-xs-12">
  59. <div class="table-responsive">
  60. <input type="hidden" name="textcount" id="textcount" value="">
  61. <table id="sample-table-1" class="table table-striped table-bordered table-hover">
  62. <thead>
  63. <tr>
  64. <th width="70px">途径顺序</th>
  65. <th width="180px">站点</th>
  66. <th width="140px">应用POI</th>
  67. <th width="100px">驶离时间差</th>
  68. <th width="100px">距离</th>
  69. <th width="120px">上下类型</th>
  70. <th width="110px">检票口</th>
  71. <th width="60px">操作</th>
  72. </tr>
  73. </thead>
  74. <tbody id="line_list_info">
  75. <tr id="tr_replace" style="">
  76. <input type="hidden" id="[hideid]" value="[hideid_id]" />
  77. <td id="[orderid]">[途径顺序]</td>
  78. <td>[站点]</td>
  79. <td id="[station_type_td]">
  80. <select id="[select_poi]" style="margin-right: 10px;width:150px;">
  81. <option value="0">请选择</option>
  82. </select>
  83. </td>
  84. <td>
  85. <input type="text" id="time_out" placeholder="0" style="font-size: 13px;width: 60px;" />分
  86. </td>
  87. <td>
  88. <input type="text" id="distance" placeholder="0" style="font-size: 13px;width: 60px;" />公里
  89. </td>
  90. <td>
  91. <select id="[station_type]" style="margin-right: 10px;width:100px;">
  92. <option value="108">上</option>
  93. <option value="109">上下</option>
  94. <option value="110">下</option>
  95. </select>
  96. </td>
  97. <td id="[teller]">
  98. <select id="[teller_station]" style="margin-right: 10px;width:100px;">
  99. <option value="0">请选择</option>
  100. </select>
  101. </td>
  102. <td name="[del]" id="[del]">[删除]</td>
  103. </tr>
  104. </tbody>
  105. </table>
  106. </div>
  107. <!-- /.table-responsive -->
  108. </div>
  109. <!-- /span -->
  110. </div>
  111. <!--row end-->
  112. </div>
  113. </div>
  114. <!--线路编号-->
  115. <div class="profile-info-row">
  116. <div class="profile-info-name">线路编号:</div>
  117. <div id="line_no" class="profile-info-value" style="color: gray">[线路编号]</div>
  118. </div>
  119. <!--线路名称-->
  120. <div class="profile-info-row">
  121. <div class="profile-info-name">线路名称:</div>
  122. <div id="line_name" class="profile-info-value" style="color: gray;">[线路名称]</div>
  123. </div>
  124. </div>
  125. </div>
  126. <div class="line_down"></div>
  127. <div>
  128. <span class="save_btn btn-primary" id="saveBtn" onclick="saveInfo()">保存</span>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
  133. </body>
  134. <script src="js/jquery-2.2.4.min.js" type="text/javascript" charset="utf-8"></script>
  135. <script src="js/jquery.cookie.js"></script>
  136. <script src="js/base_path.js" type="text/javascript" charset="utf-8"></script>
  137. <!--<script src="js/xm.js"></script>
  138. <script>
  139. login();
  140. </script>
  141. <script src="js/master.js"></script> -->
  142. <script src="js/change_line.js" type="text/javascript" charset="utf-8"></script>
  143. </html>