Commit de54bec519c2b4117d2872b16311049bb0346ee0
1 parent
f92b8717
删除add_页面
Showing
1 changed file
with
0 additions
and
752 deletions
src/main/resources/static/pages/base/line/add_.html deleted
100644 → 0
| 1 | -<link href="css/add.css" rel="stylesheet" type="text/css" /> | |
| 2 | -<div class="page-head"> | |
| 3 | - <div class="page-title"> | |
| 4 | - <h1>添加线路</h1> | |
| 5 | - </div> | |
| 6 | -</div> | |
| 7 | - | |
| 8 | -<ul class="page-breadcrumb breadcrumb"> | |
| 9 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 10 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 11 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 12 | - <li><span class="active">添加线路</span></li> | |
| 13 | -</ul> | |
| 14 | - | |
| 15 | -<div class="portlet light bordered"> | |
| 16 | - <div class="portlet-title"> | |
| 17 | - <div class="caption"> | |
| 18 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 19 | - <span class="caption-subject font-red-sunglo bold uppercase">线路添加</span> | |
| 20 | - </div> | |
| 21 | - </div> | |
| 22 | - <div class="portlet-body form"> | |
| 23 | - <!-- START FORM --> | |
| 24 | - <form class="form-horizontal" id="submit_line_form" action="/" method="POST" novalidate="novalidate"> | |
| 25 | - <div class="form-wizard"> | |
| 26 | - <div class="form-body"> | |
| 27 | - <ul class="nav nav-pills nav-justified steps"> | |
| 28 | - <li class="active"> | |
| 29 | - <a href="#tab1" data-toggle="tab" class="step" aria-expanded="true"> | |
| 30 | - <span class="number"> 1 </span> | |
| 31 | - <span class="desc"> | |
| 32 | - <i class="fa fa-check"></i> 线路基础信息 </span> | |
| 33 | - </a> | |
| 34 | - </li> | |
| 35 | - <li> | |
| 36 | - <a href="#tab2" data-toggle="tab" class="step"> | |
| 37 | - <span class="number"> 2 </span> | |
| 38 | - <span class="desc"> | |
| 39 | - <i class="fa fa-check"></i> 线路标准信息 </span> | |
| 40 | - </a> | |
| 41 | - </li> | |
| 42 | - <li> | |
| 43 | - <a href="#tab3" data-toggle="tab" class="step active"> | |
| 44 | - <span class="number"> 3 </span> | |
| 45 | - <span class="desc"> | |
| 46 | - <i class="fa fa-check"></i> 规划线路走向 </span> | |
| 47 | - </a> | |
| 48 | - </li> | |
| 49 | - <li> | |
| 50 | - <a href="#tab4" data-toggle="tab" class="step"> | |
| 51 | - <span class="number"> 4 </span> | |
| 52 | - <span class="desc"> | |
| 53 | - <i class="fa fa-check"></i> 确认 </span> | |
| 54 | - </a> | |
| 55 | - </li> | |
| 56 | - </ul> | |
| 57 | - | |
| 58 | - <!-- 进度条 --> | |
| 59 | - <div id="bar" class="progress progress-striped" role="progressbar"> | |
| 60 | - <div class="progress-bar progress-bar-success" style="width: 25%;"></div> | |
| 61 | - </div> | |
| 62 | - | |
| 63 | - <div class="tab-content"> | |
| 64 | - <div class="alert alert-danger display-hide"> | |
| 65 | - <button class="close" data-close="alert"></button> | |
| 66 | - 您的输入有误,请检查下面的输入项 | |
| 67 | - </div> | |
| 68 | - <div class="alert alert-success display-none"> | |
| 69 | - <button class="close" data-dismiss="alert"></button> | |
| 70 | - Your form validation is successful! | |
| 71 | - </div> | |
| 72 | - | |
| 73 | - <!-- 线路基础信息 --> | |
| 74 | - <div class="tab-pane active" id="tab1"> | |
| 75 | - <h3 class="block"> 线路基础信息 </h3> | |
| 76 | - <div class="form-group"> | |
| 77 | - <label class="control-label col-md-3"> | |
| 78 | - <span class="required" aria-required="true"> * </span>线路名称: | |
| 79 | - </label> | |
| 80 | - <div class="col-md-4"> | |
| 81 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 82 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 83 | - </div> | |
| 84 | - </div> | |
| 85 | - <div class="form-group"> | |
| 86 | - <label class="control-label col-md-3"> 英文名称: </label> | |
| 87 | - <div class="col-md-4"> | |
| 88 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称" Readonly> | |
| 89 | - </div> | |
| 90 | - </div> | |
| 91 | - <div class="form-group"> | |
| 92 | - <label class="control-label col-md-3"> 线路简称:</label> | |
| 93 | - <div class="col-md-4"> | |
| 94 | - <input type="text" class="form-control" name="shortName" placeholder="线路简称" id="shortNameInput" Readonly> | |
| 95 | - </div> | |
| 96 | - </div> | |
| 97 | - <div class="form-group"> | |
| 98 | - <label class="control-label col-md-3"> 所属公司:</label> | |
| 99 | - <div class="col-md-4"> | |
| 100 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 101 | - </div> | |
| 102 | - </div> | |
| 103 | - <div class="form-group"> | |
| 104 | - <label class="control-label col-md-3"> 所属分公司:</label> | |
| 105 | - <div class="col-md-4"> | |
| 106 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 107 | - </div> | |
| 108 | - </div> | |
| 109 | - <div class="form-group"> | |
| 110 | - <label class="control-label col-md-3"> 线路性质:</label> | |
| 111 | - <div class="col-md-4"> | |
| 112 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 113 | - <option value="">-- 请选择线路性质 --</option> | |
| 114 | - <option value="lj">路救</option> | |
| 115 | - <option value="bc">备车</option> | |
| 116 | - <option value="dbc">定班车</option> | |
| 117 | - <option value="yxl">夜宵路</option> | |
| 118 | - <option value="cgxl">常规线路</option> | |
| 119 | - <option value="gjxl">过江线路</option> | |
| 120 | - <option value="csbs">穿梭巴士</option> | |
| 121 | - <option value="tyxl">特约线路</option> | |
| 122 | - <option value="cctxl">村村通线路</option> | |
| 123 | - <option value="qt">其他</option> | |
| 124 | - </select> | |
| 125 | - </div> | |
| 126 | - </div> | |
| 127 | - <div class="form-group"> | |
| 128 | - <label class="control-label col-md-3"> 线路等级:</label> | |
| 129 | - <div class="col-md-4"> | |
| 130 | - <select name="level" class="form-control" id="levelSelect"> | |
| 131 | - <option value="">-- 请选择线路等级 --</option> | |
| 132 | - <option value="1">一级线路</option> | |
| 133 | - <option value="2">二级线路</option> | |
| 134 | - <option value="0">未知等级</option> | |
| 135 | - </select> | |
| 136 | - </div> | |
| 137 | - </div> | |
| 138 | - <div class="form-group"> | |
| 139 | - <label class="control-label col-md-3">是否撤销:</label> | |
| 140 | - <div class="col-md-4"> | |
| 141 | - <div class="md-radio-inline"> | |
| 142 | - <div class="md-radio"> | |
| 143 | - <input type="radio" id="radio14" name="destroy" class="md-radiobtn" value="1" > | |
| 144 | - <label for="radio14"> | |
| 145 | - <span></span> | |
| 146 | - <span class="check"></span> | |
| 147 | - <span class="box"></span> 是 | |
| 148 | - </label> | |
| 149 | - </div> | |
| 150 | - <div class="md-radio has-error"> | |
| 151 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" value="0" checked="checked"> | |
| 152 | - <label for="radio15" style="color:#FFC0CB"> | |
| 153 | - <span></span> | |
| 154 | - <span class="check"></span> | |
| 155 | - <span class="box"></span> 否 | |
| 156 | - </label> | |
| 157 | - </div> | |
| 158 | - </div> | |
| 159 | - </div> | |
| 160 | - </div> | |
| 161 | - <div class="form-group"> | |
| 162 | - <label class="control-label col-md-3">是否宵夜:</label> | |
| 163 | - <div class="col-md-4"> | |
| 164 | - <div class="md-radio-inline"> | |
| 165 | - <div class="md-radio"> | |
| 166 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" > | |
| 167 | - <label for="radio16"> | |
| 168 | - <span></span> | |
| 169 | - <span class="check"></span> | |
| 170 | - <span class="box"></span> 是 | |
| 171 | - </label> | |
| 172 | - </div> | |
| 173 | - <div class="md-radio has-error"> | |
| 174 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" checked="checked"> | |
| 175 | - <label for="radio17" style="color:#FFC0CB"> | |
| 176 | - <span></span> | |
| 177 | - <span class="check"></span> | |
| 178 | - <span class="box"></span> 否 | |
| 179 | - </label> | |
| 180 | - </div> | |
| 181 | - </div> | |
| 182 | - </div> | |
| 183 | - </div> | |
| 184 | - <div class="form-group"> | |
| 185 | - <label class="col-md-3 control-label">线路规划:</label> | |
| 186 | - <div class="col-md-4"> | |
| 187 | - <div class="md-radio-inline"> | |
| 188 | - <div class="md-radio"> | |
| 189 | - <input type="radio" id="radio18" name="linePlan" class="md-radiobtn" value="1" checked="checked"> | |
| 190 | - <label for="radio18"> | |
| 191 | - <span></span> | |
| 192 | - <span class="check"></span> | |
| 193 | - <span class="box"></span> 系统规划 | |
| 194 | - </label> | |
| 195 | - </div> | |
| 196 | - <div class="md-radio"> | |
| 197 | - <input type="radio" id="radio19" name="linePlan" class="md-radiobtn" value="0"> | |
| 198 | - <label for="radio19"> | |
| 199 | - <span></span> | |
| 200 | - <span class="check"></span> | |
| 201 | - <span class="box"></span> 手动规划 | |
| 202 | - </label> | |
| 203 | - </div> | |
| 204 | - </div> | |
| 205 | - </div> | |
| 206 | - </div> | |
| 207 | - <div class="form-group"> | |
| 208 | - <label class="control-label col-md-3"> 开辟日期: </label> | |
| 209 | - <div class="col-md-4"> | |
| 210 | - <input type="date" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 211 | - </div> | |
| 212 | - </div> | |
| 213 | - <div class="form-group"> | |
| 214 | - <label class="control-label col-md-3"> 线路沿革: </label> | |
| 215 | - <div class="col-md-4"> | |
| 216 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 217 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 218 | - </div> | |
| 219 | - </div> | |
| 220 | - <div class="form-group"> | |
| 221 | - <label class="control-label col-md-3"> 设备线路编码: </label> | |
| 222 | - <div class="col-md-4"> | |
| 223 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 224 | - </div> | |
| 225 | - </div> | |
| 226 | - <div class="form-group"> | |
| 227 | - <label class="control-label col-md-3"> 上海市线路编码: </label> | |
| 228 | - <div class="col-md-4"> | |
| 229 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 230 | - </div> | |
| 231 | - </div> | |
| 232 | - <div class="form-group"> | |
| 233 | - <label class="control-label col-md-3"> 起始站调度电话: </label> | |
| 234 | - <div class="col-md-4"> | |
| 235 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 236 | - </div> | |
| 237 | - </div> | |
| 238 | - <div class="form-group"> | |
| 239 | - <label class="control-label col-md-3"> 终点站调度电话: </label> | |
| 240 | - <div class="col-md-4"> | |
| 241 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 242 | - </div> | |
| 243 | - </div> | |
| 244 | - <div class="form-group"> | |
| 245 | - <label class="control-label col-md-3"> 描述/说明: </label> | |
| 246 | - <div class="col-md-4"> | |
| 247 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 248 | - </div> | |
| 249 | - </div> | |
| 250 | - </div> | |
| 251 | - | |
| 252 | - <!-- 线路标准信息 --> | |
| 253 | - <div class="tab-pane" id="tab2"> | |
| 254 | - <h3 class="block"> 线路标准信息 </h3> | |
| 255 | - <div class="form-group"> | |
| 256 | - <label class="control-label col-md-3"> 线路标准信息类型:</label> | |
| 257 | - <div class="col-md-4"> | |
| 258 | - <select name="type" class="form-control" id="type"> | |
| 259 | - <option value="">-- 请选择类型 --</option> | |
| 260 | - <option value="zc">正常</option> | |
| 261 | - <option value="qj">区间</option> | |
| 262 | - <option value="fk">放空</option> | |
| 263 | - </select> | |
| 264 | - </div> | |
| 265 | - </div> | |
| 266 | - <div class="form-group"> | |
| 267 | - <label class="control-label col-md-3"> 标准总里程: </label> | |
| 268 | - <div class="col-md-4"> | |
| 269 | - <input type="text" class="form-control" name="totalMileage" id="totalMileage" placeholder="标准总里程"> | |
| 270 | - <span class="help-block"> 单位:公里 </span> | |
| 271 | - </div> | |
| 272 | - </div> | |
| 273 | - <div class="form-group"> | |
| 274 | - <label class="control-label col-md-3"> 空放里程: </label> | |
| 275 | - <div class="col-md-4"> | |
| 276 | - <input type="text" class="form-control" name="emptyMileage" id="emptyMileage" placeholder="空放里程"> | |
| 277 | - <span class="help-block"> 单位:公里 </span> | |
| 278 | - </div> | |
| 279 | - </div> | |
| 280 | - <div class="form-group"> | |
| 281 | - <label class="control-label col-md-3"> 上行里程: </label> | |
| 282 | - <div class="col-md-4"> | |
| 283 | - <input type="text" class="form-control" name="upMileage" id="upMileage" placeholder="上行里程"> | |
| 284 | - <span class="help-block"> 单位:公里 </span> | |
| 285 | - </div> | |
| 286 | - </div> | |
| 287 | - <div class="form-group"> | |
| 288 | - <label class="control-label col-md-3"> 下行里程: </label> | |
| 289 | - <div class="col-md-4"> | |
| 290 | - <input type="text" class="form-control" name="downMileage" id="downMileage" placeholder="下行里程"> | |
| 291 | - <span class="help-block"> 单位:公里 </span> | |
| 292 | - </div> | |
| 293 | - </div> | |
| 294 | - <div class="form-group"> | |
| 295 | - <label class="control-label col-md-3"> 上行行驶时间: </label> | |
| 296 | - <div class="col-md-4"> | |
| 297 | - <input type="text" class="form-control" name="upTravelTime" id="upTravelTime" placeholder="上行行驶时间"> | |
| 298 | - <span class="help-block"> 单位:分钟 </span> | |
| 299 | - </div> | |
| 300 | - </div> | |
| 301 | - <div class="form-group"> | |
| 302 | - <label class="control-label col-md-3"> 下行行驶时间: </label> | |
| 303 | - <div class="col-md-4"> | |
| 304 | - <input type="text" class="form-control" name="downTravelTime" id="downTravelTime" placeholder="下行行驶时间"> | |
| 305 | - <span class="help-block"> 单位:分钟 </span> | |
| 306 | - </div> | |
| 307 | - </div> | |
| 308 | - <div class="form-group"> | |
| 309 | - <label class="control-label col-md-3"> 早高峰开始时间: </label> | |
| 310 | - <div class="col-md-4"> | |
| 311 | - <input type="text" class="form-control" name="earlyStartTime" id="earlyStartTime" placeholder="早高峰开始时间"> | |
| 312 | - <span class="help-block"> 格式:00:00 </span> | |
| 313 | - </div> | |
| 314 | - </div> | |
| 315 | - <div class="form-group"> | |
| 316 | - <label class="control-label col-md-3"> 早高峰结束时间: </label> | |
| 317 | - <div class="col-md-4"> | |
| 318 | - <input type="text" class="form-control" name="earlyEndTime" id="earlyEndTime" placeholder="早高峰结束时间"> | |
| 319 | - <span class="help-block"> 格式:00:00 </span> | |
| 320 | - </div> | |
| 321 | - </div> | |
| 322 | - <div class="form-group"> | |
| 323 | - <label class="control-label col-md-3"> 早高峰上行行驶时间: </label> | |
| 324 | - <div class="col-md-4"> | |
| 325 | - <input type="text" class="form-control" name="earlyUpTime" id="earlyUpTime" placeholder="早高峰上行行驶时间"> | |
| 326 | - <span class="help-block"> 单位:分钟 </span> | |
| 327 | - </div> | |
| 328 | - </div> | |
| 329 | - <div class="form-group"> | |
| 330 | - <label class="control-label col-md-3"> 早高峰下行行驶时间: </label> | |
| 331 | - <div class="col-md-4"> | |
| 332 | - <input type="text" class="form-control" name="earlyDownTime" id="earlyDownTime" placeholder="早高峰下行行驶时间"> | |
| 333 | - <span class="help-block"> 单位:分钟 </span> | |
| 334 | - </div> | |
| 335 | - </div> | |
| 336 | - <div class="form-group"> | |
| 337 | - <label class="control-label col-md-3"> 晚高峰开始时间: </label> | |
| 338 | - <div class="col-md-4"> | |
| 339 | - <input type="text" class="form-control" name="lateStartTime" id="lateStartTime" placeholder="晚高峰开始时间"> | |
| 340 | - <span class="help-block"> 格式:00:00 </span> | |
| 341 | - </div> | |
| 342 | - </div> | |
| 343 | - <div class="form-group"> | |
| 344 | - <label class="control-label col-md-3"> 晚高峰结束时间: </label> | |
| 345 | - <div class="col-md-4"> | |
| 346 | - <input type="text" class="form-control" name="lateEndTime" id="lateEndTime" placeholder="晚高峰结束时间"> | |
| 347 | - <span class="help-block"> 格式:00:00 </span> | |
| 348 | - </div> | |
| 349 | - </div> | |
| 350 | - <div class="form-group"> | |
| 351 | - <label class="control-label col-md-3"> 晚高峰上行行驶时间: </label> | |
| 352 | - <div class="col-md-4"> | |
| 353 | - <input type="text" class="form-control" name="lateUpTime" id="lateUpTime" placeholder="晚高峰上行行驶时间"> | |
| 354 | - <span class="help-block"> 单位:分钟 </span> | |
| 355 | - </div> | |
| 356 | - </div> | |
| 357 | - <div class="form-group"> | |
| 358 | - <label class="control-label col-md-3"> 晚高峰下行行驶时间: </label> | |
| 359 | - <div class="col-md-4"> | |
| 360 | - <input type="text" class="form-control" name="lateDownTime" id="lateDownTime" placeholder="晚高峰下行行驶时间"> | |
| 361 | - <span class="help-block"> 单位:分钟 </span> | |
| 362 | - </div> | |
| 363 | - </div> | |
| 364 | - <div class="form-group"> | |
| 365 | - <label class="control-label col-md-3"> 小夜高峰上行行驶时间: </label> | |
| 366 | - <div class="col-md-4"> | |
| 367 | - <input type="text" class="form-control" name="nightStartTime" id="nightStartTime" placeholder="小夜高峰上行行驶时间"> | |
| 368 | - <span class="help-block"> 单位:分钟 </span> | |
| 369 | - </div> | |
| 370 | - </div> | |
| 371 | - <div class="form-group"> | |
| 372 | - <label class="control-label col-md-3"> 小夜高峰下行行驶时间: </label> | |
| 373 | - <div class="col-md-4"> | |
| 374 | - <input type="text" class="form-control" name="nightEndTime" id="nightEndTime" placeholder="晚高峰下行行驶时间"> | |
| 375 | - <span class="help-block"> 单位:分钟 </span> | |
| 376 | - </div> | |
| 377 | - </div> | |
| 378 | - <div class="form-group"> | |
| 379 | - <label class="control-label col-md-3"> 低谷上行行驶时间: </label> | |
| 380 | - <div class="col-md-4"> | |
| 381 | - <input type="text" class="form-control" name="troughUpTime" id="troughUpTime" placeholder="低谷上行行驶时间"> | |
| 382 | - <span class="help-block"> 单位:分钟 </span> | |
| 383 | - </div> | |
| 384 | - </div> | |
| 385 | - <div class="form-group"> | |
| 386 | - <label class="control-label col-md-3"> 低谷下行行驶时间: </label> | |
| 387 | - <div class="col-md-4"> | |
| 388 | - <input type="text" class="form-control" name="troughDownTime" id="troughDownTime" placeholder="低谷下行行驶时间"> | |
| 389 | - <span class="help-block"> 单位:分钟 </span> | |
| 390 | - </div> | |
| 391 | - </div> | |
| 392 | - <div class="form-group"> | |
| 393 | - <label class="control-label col-md-3"> 停车场 : </label> | |
| 394 | - <div class="col-md-4"> | |
| 395 | - <input type="text" class="form-control" name="carPark" id="carPark" placeholder="停车场"> | |
| 396 | - </div> | |
| 397 | - </div> | |
| 398 | - <div class="form-group"> | |
| 399 | - <label class="control-label col-md-3"> 进场时间 : </label> | |
| 400 | - <div class="col-md-4"> | |
| 401 | - <input type="text" class="form-control" name="paradeTime" id="paradeTime" placeholder="进场时间"> | |
| 402 | - <span class="help-block"> 描述:起点至停车场的时间 </span> | |
| 403 | - </div> | |
| 404 | - </div> | |
| 405 | - <div class="form-group"> | |
| 406 | - <label class="control-label col-md-3"> 出场时间 : </label> | |
| 407 | - <div class="col-md-4"> | |
| 408 | - <input type="text" class="form-control" name="outTime" id="outTime" placeholder="出场时间"> | |
| 409 | - <span class="help-block"> 描述:停车场至起点的时间 </span> | |
| 410 | - </div> | |
| 411 | - </div> | |
| 412 | - <div class="form-group"> | |
| 413 | - <label class="control-label col-md-3"> 进场里程 : </label> | |
| 414 | - <div class="col-md-4"> | |
| 415 | - <input type="text" class="form-control" name="paradeMileage" id="paradeMileage" placeholder="进场里程"> | |
| 416 | - <span class="help-block"> 描述:起点至停车场的里程 </span> | |
| 417 | - </div> | |
| 418 | - </div> | |
| 419 | - <div class="form-group"> | |
| 420 | - <label class="control-label col-md-3"> 出场里程: </label> | |
| 421 | - <div class="col-md-4"> | |
| 422 | - <input type="text" class="form-control" name="outMileage" id="outMileage" placeholder="出场里程"> | |
| 423 | - <span class="help-block"> 描述:停车场至起点的里程 </span> | |
| 424 | - </div> | |
| 425 | - </div> | |
| 426 | - <div class="form-group"> | |
| 427 | - <label class="control-label col-md-3"> 早高峰大间隔: </label> | |
| 428 | - <div class="col-md-4"> | |
| 429 | - <input type="text" class="form-control" name="earlyIntervalLg" id="earlyIntervalLg" placeholder="早高峰大间隔"> | |
| 430 | - </div> | |
| 431 | - </div> | |
| 432 | - <div class="form-group"> | |
| 433 | - <label class="control-label col-md-3"> 晚高峰大间隔: </label> | |
| 434 | - <div class="col-md-4"> | |
| 435 | - <input type="text" class="form-control" name="lateIntervalLg" id="lateIntervalLg" placeholder="晚高峰大间隔"> | |
| 436 | - </div> | |
| 437 | - </div> | |
| 438 | - <div class="form-group"> | |
| 439 | - <label class="control-label col-md-3"> 平时大间隔: </label> | |
| 440 | - <div class="col-md-4"> | |
| 441 | - <input type="text" class="form-control" name="intervalLg" id="intervalLg" placeholder="平时大间隔"> | |
| 442 | - </div> | |
| 443 | - </div> | |
| 444 | - <div class="form-group"> | |
| 445 | - <label class="control-label col-md-3"> 限速(平时): </label> | |
| 446 | - <div class="col-md-4"> | |
| 447 | - <input type="text" class="form-control" name="speedLimit" id="speedLimit" placeholder="限速(平时)"> | |
| 448 | - </div> | |
| 449 | - </div> | |
| 450 | - <div class="form-group"> | |
| 451 | - <label class="control-label col-md-3"> 限速(雨天): </label> | |
| 452 | - <div class="col-md-4"> | |
| 453 | - <input type="text" class="form-control" name="rainLimit" id="rainLimit" placeholder="限速(雨天)"> | |
| 454 | - </div> | |
| 455 | - </div> | |
| 456 | - <div class="form-group"> | |
| 457 | - <label class="control-label col-md-3"> 限速(大雾): </label> | |
| 458 | - <div class="col-md-4"> | |
| 459 | - <input type="text" class="form-control" name="fogLimit" id="fogLimit" placeholder="限速(大雾)"> | |
| 460 | - </div> | |
| 461 | - </div> | |
| 462 | - <div class="form-group"> | |
| 463 | - <label class="control-label col-md-3"> 限速(冰雪): </label> | |
| 464 | - <div class="col-md-4"> | |
| 465 | - <input type="text" class="form-control" name="snowLimit" id="snowLimit" placeholder="限速(冰雪)"> | |
| 466 | - </div> | |
| 467 | - </div> | |
| 468 | - <div class="form-group"> | |
| 469 | - <label class="control-label col-md-3"> 限速(节庆): </label> | |
| 470 | - <div class="col-md-4"> | |
| 471 | - <input type="text" class="form-control" name="festivalSpeedLimit" id="festivalSpeedLimit" placeholder="限速(节庆)"> | |
| 472 | - </div> | |
| 473 | - </div> | |
| 474 | - <div class="form-group"> | |
| 475 | - <label class="control-label col-md-3"> 滞站: </label> | |
| 476 | - <div class="col-md-4"> | |
| 477 | - <input type="text" class="form-control" name="lagStation" id="lagStation" placeholder="滞站"> | |
| 478 | - </div> | |
| 479 | - </div> | |
| 480 | - <div class="form-group"> | |
| 481 | - <label class="control-label col-md-3"> 越站: </label> | |
| 482 | - <div class="col-md-4"> | |
| 483 | - <input type="text" class="form-control" name="Skip" id="Skip" placeholder="越站"> | |
| 484 | - </div> | |
| 485 | - </div> | |
| 486 | - <div class="form-group"> | |
| 487 | - <label class="control-label col-md-3"> 超速: </label> | |
| 488 | - <div class="col-md-4"> | |
| 489 | - <input type="text" class="form-control" name="speeding" id="speeding" placeholder="超速"> | |
| 490 | - </div> | |
| 491 | - </div> | |
| 492 | - <div class="form-group"> | |
| 493 | - <label class="control-label col-md-3"> 串线: </label> | |
| 494 | - <div class="col-md-4"> | |
| 495 | - <input type="text" class="form-control" name="crossedLine" id="crossedLine" placeholder="串线"> | |
| 496 | - </div> | |
| 497 | - </div> | |
| 498 | - <div class="form-group"> | |
| 499 | - <label class="control-label col-md-3"> 越界: </label> | |
| 500 | - <div class="col-md-4"> | |
| 501 | - <input type="text" class="form-control" name="overflights" id="overflights" placeholder="越界"> | |
| 502 | - </div> | |
| 503 | - </div> | |
| 504 | - <div class="form-group"> | |
| 505 | - <label class="col-md-3 control-label">描述/说明:</label> | |
| 506 | - <div class="col-md-4"> | |
| 507 | - <textarea class="form-control" rows="3" name="lineInforMationdescriptions" id="lineInforMationdescriptions" placeholder="描述/说明"></textarea> | |
| 508 | - </div> | |
| 509 | - </div> | |
| 510 | - </div> | |
| 511 | - | |
| 512 | - <!-- 规划线路走向 --> | |
| 513 | - <div class="tab-pane" id="tab3"> | |
| 514 | - <h3 class="block"> 规划线路走向 </h3> | |
| 515 | - <div class="portlet-body"> | |
| 516 | - <div id="vmap_world" class="vmaps" style="width: 100%; position: relative; overflow: hidden;"> | |
| 517 | - </div> | |
| 518 | - <div id="r-result"></div> | |
| 519 | - </div> | |
| 520 | - </div> | |
| 521 | - | |
| 522 | - <!-- 确定提交资料信息 --> | |
| 523 | - <div class="tab-pane" id="tab4"> | |
| 524 | - <h3 class="block">Confirm your account</h3> | |
| 525 | - <h4 class="form-section">Account</h4> | |
| 526 | - <div class="form-group"> | |
| 527 | - <label class="control-label col-md-3">Username:</label> | |
| 528 | - <div class="col-md-4"> | |
| 529 | - <p class="form-control-static" data-display="username"> </p> | |
| 530 | - </div> | |
| 531 | - </div> | |
| 532 | - <div class="form-group"> | |
| 533 | - <label class="control-label col-md-3">Email:</label> | |
| 534 | - <div class="col-md-4"> | |
| 535 | - <p class="form-control-static" data-display="email"> </p> | |
| 536 | - </div> | |
| 537 | - </div> | |
| 538 | - <h4 class="form-section">Profile</h4> | |
| 539 | - <div class="form-group"> | |
| 540 | - <label class="control-label col-md-3">Fullname:</label> | |
| 541 | - <div class="col-md-4"> | |
| 542 | - <p class="form-control-static" data-display="fullname"> </p> | |
| 543 | - </div> | |
| 544 | - </div> | |
| 545 | - <div class="form-group"> | |
| 546 | - <label class="control-label col-md-3">Gender:</label> | |
| 547 | - <div class="col-md-4"> | |
| 548 | - <p class="form-control-static" data-display="gender"> </p> | |
| 549 | - </div> | |
| 550 | - </div> | |
| 551 | - <div class="form-group"> | |
| 552 | - <label class="control-label col-md-3">Phone:</label> | |
| 553 | - <div class="col-md-4"> | |
| 554 | - <p class="form-control-static" data-display="phone"> </p> | |
| 555 | - </div> | |
| 556 | - </div> | |
| 557 | - <div class="form-group"> | |
| 558 | - <label class="control-label col-md-3">Address:</label> | |
| 559 | - <div class="col-md-4"> | |
| 560 | - <p class="form-control-static" data-display="address"> </p> | |
| 561 | - </div> | |
| 562 | - </div> | |
| 563 | - <div class="form-group"> | |
| 564 | - <label class="control-label col-md-3">City/Town:</label> | |
| 565 | - <div class="col-md-4"> | |
| 566 | - <p class="form-control-static" data-display="city"> </p> | |
| 567 | - </div> | |
| 568 | - </div> | |
| 569 | - <div class="form-group"> | |
| 570 | - <label class="control-label col-md-3">Country:</label> | |
| 571 | - <div class="col-md-4"> | |
| 572 | - <p class="form-control-static" data-display="country"> </p> | |
| 573 | - </div> | |
| 574 | - </div> | |
| 575 | - <div class="form-group"> | |
| 576 | - <label class="control-label col-md-3">Remarks:</label> | |
| 577 | - <div class="col-md-4"> | |
| 578 | - <p class="form-control-static" data-display="remarks"> </p> | |
| 579 | - </div> | |
| 580 | - </div> | |
| 581 | - <h4 class="form-section">Billing</h4> | |
| 582 | - <div class="form-group"> | |
| 583 | - <label class="control-label col-md-3">Card Holder Name:</label> | |
| 584 | - <div class="col-md-4"> | |
| 585 | - <p class="form-control-static" data-display="card_name"> </p> | |
| 586 | - </div> | |
| 587 | - </div> | |
| 588 | - <div class="form-group"> | |
| 589 | - <label class="control-label col-md-3">Card Number:</label> | |
| 590 | - <div class="col-md-4"> | |
| 591 | - <p class="form-control-static" data-display="card_number"> </p> | |
| 592 | - </div> | |
| 593 | - </div> | |
| 594 | - <div class="form-group"> | |
| 595 | - <label class="control-label col-md-3">CVC:</label> | |
| 596 | - <div class="col-md-4"> | |
| 597 | - <p class="form-control-static" data-display="card_cvc"> </p> | |
| 598 | - </div> | |
| 599 | - </div> | |
| 600 | - <div class="form-group"> | |
| 601 | - <label class="control-label col-md-3">Expiration:</label> | |
| 602 | - <div class="col-md-4"> | |
| 603 | - <p class="form-control-static" data-display="card_expiry_date"> </p> | |
| 604 | - </div> | |
| 605 | - </div> | |
| 606 | - <div class="form-group"> | |
| 607 | - <label class="control-label col-md-3">Payment Options:</label> | |
| 608 | - <div class="col-md-4"> | |
| 609 | - <p class="form-control-static" data-display="payment[]"> </p> | |
| 610 | - </div> | |
| 611 | - </div> | |
| 612 | - </div> | |
| 613 | - </div> | |
| 614 | - </div> | |
| 615 | - <div class="form-actions"> | |
| 616 | - <div class="row"> | |
| 617 | - <div class="col-md-offset-3 col-md-9"> | |
| 618 | - <a href="javascript:;" class="btn default button-previous disabled" style="display: none;"> | |
| 619 | - <i class="fa fa-angle-left"></i> Back </a> | |
| 620 | - <a href="javascript:;" class="btn btn-outline green button-next"> 下一步 | |
| 621 | - <i class="fa fa-angle-right"></i> | |
| 622 | - </a> | |
| 623 | - <a href="javascript:;" class="btn green button-submit" style="display: none;"> Submit | |
| 624 | - <i class="fa fa-check"></i> | |
| 625 | - </a> | |
| 626 | - </div> | |
| 627 | - </div> | |
| 628 | - </div> | |
| 629 | - </div> | |
| 630 | - </form> | |
| 631 | - <!-- END FORM--> | |
| 632 | - </div> | |
| 633 | - <script type="text/javascript"> | |
| 634 | - $(function(){ | |
| 635 | - /* | |
| 636 | - var form = $('#submit_line_form'); | |
| 637 | - $('#submit_line_form').bootstrapWizard({ | |
| 638 | - 'nextSelector': '.button-next', | |
| 639 | - 'previousSelector': '.button-previous', | |
| 640 | - onTabClick: function (tab, navigation, index, clickedIndex) { | |
| 641 | - return false; | |
| 642 | - handleTitle(tab, navigation, clickedIndex); | |
| 643 | - }, | |
| 644 | - onNext: function (tab, navigation, index) { | |
| 645 | - alert("aaa"); | |
| 646 | - | |
| 647 | - handleTitle(tab, navigation, index); | |
| 648 | - }, | |
| 649 | - onPrevious: function (tab, navigation, index) { | |
| 650 | - | |
| 651 | - handleTitle(tab, navigation, index); | |
| 652 | - }, | |
| 653 | - onTabShow: function (tab, navigation, index) { | |
| 654 | - var total = navigation.find('li').length; | |
| 655 | - var current = index + 1; | |
| 656 | - var $percent = (current / total) * 100; | |
| 657 | - $('#submit_line_form').find('.progress-bar').css({ | |
| 658 | - width: $percent + '%' | |
| 659 | - }); | |
| 660 | - } | |
| 661 | - }); | |
| 662 | - | |
| 663 | - function handleTitle(tab, navigation, index){ | |
| 664 | - var total = navigation.find('li').length; | |
| 665 | - var current = index + 1; | |
| 666 | - // set wizard title | |
| 667 | - $('.step-title', $('#submit_line_form')).text('Step ' + (index + 1) + ' of ' + total); | |
| 668 | - // set done steps | |
| 669 | - jQuery('li', $('#submit_line_form')).removeClass("done"); | |
| 670 | - var li_list = navigation.find('li'); | |
| 671 | - for (var i = 0; i < index; i++) { | |
| 672 | - jQuery(li_list[i]).addClass("done"); | |
| 673 | - } | |
| 674 | - | |
| 675 | - if (current == 1) { | |
| 676 | - $('#submit_line_form').find('.button-previous').hide(); | |
| 677 | - } else { | |
| 678 | - $('#submit_line_form').find('.button-previous').show(); | |
| 679 | - } | |
| 680 | - | |
| 681 | - if (current >= total) { | |
| 682 | - $('#submit_line_form').find('.button-next').hide(); | |
| 683 | - $('#submit_line_form').find('.button-submit').show(); | |
| 684 | - displayConfirm(); | |
| 685 | - } else { | |
| 686 | - $('#submit_line_form').find('.button-next').show(); | |
| 687 | - $('#submit_line_form').find('.button-submit').hide(); | |
| 688 | - } | |
| 689 | - App.scrollTo($('.page-title')); | |
| 690 | - } | |
| 691 | - | |
| 692 | - function displayConfirm() { | |
| 693 | - $('#tab4 .form-control-static', form).each(function(){ | |
| 694 | - var input = $('[name="'+$(this).attr("data-display")+'"]', form); | |
| 695 | - if (input.is(":radio")) { | |
| 696 | - input = $('[name="'+$(this).attr("data-display")+'"]:checked', form); | |
| 697 | - } | |
| 698 | - if (input.is(":text") || input.is("textarea")) { | |
| 699 | - $(this).html(input.val()); | |
| 700 | - } else if (input.is("select")) { | |
| 701 | - $(this).html(input.find('option:selected').text()); | |
| 702 | - } else if (input.is(":radio") && input.is(":checked")) { | |
| 703 | - $(this).html(input.attr("data-title")); | |
| 704 | - } else if ($(this).attr("data-display") == 'payment[]') { | |
| 705 | - var payment = []; | |
| 706 | - $('[name="payment[]"]:checked', form).each(function(){ | |
| 707 | - payment.push($(this).attr('data-title')); | |
| 708 | - }); | |
| 709 | - $(this).html(payment.join("<br>")); | |
| 710 | - } | |
| 711 | - }); | |
| 712 | - } | |
| 713 | - | |
| 714 | - | |
| 715 | - var scrollHeight=document.body.scrollHeight/2; | |
| 716 | - | |
| 717 | - scroll(0,Math.round(scrollHeight)); | |
| 718 | - | |
| 719 | - // 初始化百度地图 | |
| 720 | - var map = new BMap.Map("vmap_world"); | |
| 721 | - | |
| 722 | - // 设立中心点 | |
| 723 | - map.centerAndZoom(new BMap.Point(121.523252,31.239617),13); | |
| 724 | - | |
| 725 | - map.enableScrollWheelZoom(); | |
| 726 | - | |
| 727 | - // 获取线路名称 | |
| 728 | - var busName = $('#nameInput').val(); | |
| 729 | - | |
| 730 | - var busline = new BMap.BusLineSearch(map,{ | |
| 731 | - renderOptions:{map:map,panel:"r-result"}, | |
| 732 | - onGetBusListComplete:function(result) { | |
| 733 | - if(result){ | |
| 734 | - var fstLine = result.getBusListItem(0); | |
| 735 | - busline.getBusLine(fstLine); | |
| 736 | - console.log($('#divResultTANGRAM__n').children().length); | |
| 737 | - } | |
| 738 | - }, | |
| 739 | - setGetBusLineCompleteCallback: function(){ | |
| 740 | - busline.getPolyline(); | |
| 741 | - } | |
| 742 | - }); | |
| 743 | - | |
| 744 | - busSearch('778路'); | |
| 745 | - function busSearch(busName) { | |
| 746 | - busline.getBusList(busName); | |
| 747 | - } | |
| 748 | - */ | |
| 749 | - }); | |
| 750 | - | |
| 751 | - </script> | |
| 752 | -</div> | |
| 753 | 0 | \ No newline at end of file |