25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

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