<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>添加线路</title> <!--/模板/--> <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"> <link rel="stylesheet" href="css/add_line.css" /> <style type="text/css"> .profile-info-value>span+span:before { display: inline; content: ""; margin-left: 1px; margin-right: 3px; color: #666; border-bottom: 1px solid #FFF; } </style> </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 class="warp clearfix"> <div class="control-bar"> </div> <div class="control-show">--> <div id=""> <div class="total" id="total"> <div class="title_add">添加线路</div> <div class="line_top"></div> <div class="tabbable" > <div class="profile-user-info profile-user-info-striped" style="margin-top: 20px;"> <!--线路类型--> <div class="profile-info-row"> <div class="profile-info-name">线路类型:</div> <div class="profile-info-value"> <span> <input type="radio" name="bar_style" id="bar_style_h" checked="checked" value="255" />直通巴士 </span> <span style="padding-left: 25px;"> <input type="radio" name="bar_style" id="bar_style_h" value="256" />穿梭巴士 </span> </div> </div> <!--添加站点--> <div class="profile-info-row"> <div class="profile-info-name">添加站点:</div> <div class="profile-info-value"> <div id="get_list"> <span> <input class="line_list" name="line_list" type="text" id="line_list" oninput="lineListSearch(this.value)" placeholder="填写名称从下拉框中选择" style="font-size: 13px; width: 180px;"> <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;" > </div> <input type="hidden" name="station_select" id="station_select" /> </span> <span class="add_btn btn-primary" id="addBtn" onclick="addOneLine()">+添加</span> </div> <div class="row" style="margin-top: 20px;"> <div class="col-xs-12"> <div class="table-responsive"> <input type="hidden" name="textcount" id="textcount" value=""> <table id="sample-table-1" class="table table-striped table-bordered table-hover"> <thead> <tr> <th width="80px">途径顺序</th> <th width="180px">站点</th> <th width="160px">应用POI</th> <th width="160px">驶离时间差</th> <th width="120px">上下类型</th> <th width="120px">检票口</th> <th width="60px">操作</th> </tr> </thead> <tbody id="line_list_info"> <tr id="tr_replace" style=""> <input type="hidden" id="[hideid]" value="[hideid_id]" /> <td id="[orderid]">[途径顺序]</td> <td id="[stationid]">[站点]</td> <td id="[station_type_td]"> <select id="[select_poi]" style="margin-right: 10px;width:150px;"> <option value="0">请选择</option> </select> </td> <td id="[timeid]"> <input type="text" id="time_out" placeholder="0" style="font-size: 13px;width: 60px;" />分 </td> <td id="[updown]"> <select id="[station_type]" style="margin-right: 10px;width:100px;"> <option value="108">上</option> <option value="109">上下</option> <option value="110">下</option> </select> </td> <td id="[teller]"> <select id="[teller_station]" style="margin-right: 10px;width:100px;"> <option value="0">请选择</option> </select> </td> <td name="[del]" id="[del]" >[删除]</td> </tr> </tbody> </table> </div> <!-- /.table-responsive --> </div> <!-- /span --> </div> <!--row end--> </div> </div> <!--线路编号--> <div class="profile-info-row"> <div class="profile-info-name">线路编号:</div> <div class="profile-info-value" style="color: gray">自动生成</div> </div> <!--线路名称--> <div class="profile-info-row"> <div class="profile-info-name">线路名称:</div> <div class="profile-info-value" style="color: gray;">自动生成</div> </div> </div> </div> <div class="line_down"></div> <div> <span class="save_btn btn-primary" id="saveBtn" onclick="saveInfo()">保存</span> </div> </div> </div> <!--</div>--> </body> <script src="js/jquery-2.2.4.min.js" type="text/javascript" charset="utf-8"></script> <script src="js/jquery.cookie.js"></script> <!--<script src="js/xm.js"></script> <script> login(); </script> <script src="js/master.js"></script> --> <script src="js/add_line.js" type="text/javascript" charset="utf-8"></script> </html>