Commit 9849a456cc5fea221bbb13abc5b53b3cc91e6864
1 parent
1008b078
线路添加字段 线路区域region(0:区内,1:区外)
Showing
8 changed files
with
1392 additions
and
1257 deletions
src/main/java/com/bsth/entity/Line.java
| ... | ... | @@ -98,6 +98,9 @@ public class Line implements Serializable { |
| 98 | 98 | /** 是否营运 <1:是;0:否> bit length(50)*/ |
| 99 | 99 | private Integer sfyy; |
| 100 | 100 | |
| 101 | + /** 线路区域 <0:区内,1:区外> bit length(1)*/ | |
| 102 | + private Integer region; | |
| 103 | + | |
| 101 | 104 | /** 起始调度电话 varchar length(50) */ |
| 102 | 105 | private String startPhone; |
| 103 | 106 | |
| ... | ... | @@ -498,6 +501,13 @@ public class Line implements Serializable { |
| 498 | 501 | this.sfyy = sfyy; |
| 499 | 502 | } |
| 500 | 503 | |
| 504 | + public Integer getRegion() { | |
| 505 | + return region; | |
| 506 | + } | |
| 507 | + | |
| 508 | + public void setRegion(Integer region) { | |
| 509 | + this.region = region; | |
| 510 | + } | |
| 501 | 511 | |
| 502 | 512 | public Integer getRemove() { |
| 503 | 513 | return remove; | ... | ... |
src/main/java/com/bsth/repository/LineRepository.java
| ... | ... | @@ -58,12 +58,12 @@ public interface LineRepository extends BaseRepository<Line, Integer> { |
| 58 | 58 | + "l.startStationEndTime=?9, l.endStationFirstTime=?10, l.endStationEndTime=?11, l.linePlayType=?12, " |
| 59 | 59 | + "l.openDate=?13, l.es=?14, l.shortName=?15, l.shanghaiLinecode=?16, l.eqLinecode=?17, l.startPhone=?18, " |
| 60 | 60 | + "l.endPhone=?19, l.carSumNumber=?20, l.hvacCarNumber=?21, l.ordCarNumber=?22, l.history=?23, " |
| 61 | - + "l.descriptions=?24, l.destroy=?25, l.supperLine=?26, l.spacGrade=?27, l.warrantCar=?28 where " | |
| 62 | - + "l.lineCode=?29 ") | |
| 61 | + + "l.descriptions=?24, l.destroy=?25, l.supperLine=?26, l.spacGrade=?27, l.warrantCar=?28, l.region=?30 where " | |
| 62 | + + "l.lineCode=?29") | |
| 63 | 63 | public int update(String name, String company, String brancheCompany, String level, String nature, |
| 64 | 64 | String startStationName, String endStationName, String startStationFirstTime, String startStationEndTime, |
| 65 | 65 | String endStationFirstTime, String endStationEndTime, Integer linePlayType, Date openDate, String es, |
| 66 | 66 | String shortName, String shanghaiLinecode, String eqLinecode, String startPhone, String endPhone, |
| 67 | 67 | Integer carSumNumber, Integer hvacCarNumber, Integer ordCarNumber, String history, String descriptions, |
| 68 | - Integer destroy, Integer supperLine, Integer spacGrade, Integer warrantCar, String lineCode); | |
| 68 | + Integer destroy, Integer supperLine, Integer spacGrade, Integer warrantCar, String lineCode, Integer region); | |
| 69 | 69 | } | ... | ... |
src/main/java/com/bsth/service/impl/LineServiceImpl.java
| ... | ... | @@ -79,7 +79,7 @@ public class LineServiceImpl extends BaseServiceImpl<Line, Integer> implements L |
| 79 | 79 | l.getOpenDate(), l.getEs(), l.getShortName(), l.getShanghaiLinecode(), l.getEqLinecode(), |
| 80 | 80 | l.getStartPhone(), l.getEndPhone(), l.getCarSumNumber(), l.getHvacCarNumber(), l.getOrdCarNumber(), |
| 81 | 81 | l.getHistory(), l.getDescriptions(), l.getDestroy(), l.getSupperLine(), l.getSpacGrade(), |
| 82 | - l.getWarrantCar(), l.getLineCode()); | |
| 82 | + l.getWarrantCar(), l.getLineCode(), l.getRegion()); | |
| 83 | 83 | if (status==1) { |
| 84 | 84 | map.put("status", ResponseCode.SUCCESS); |
| 85 | 85 | } else { | ... | ... |
src/main/resources/static/pages/base/line/add.html
| 1 | 1 | <!-- 片段标题 START --> |
| 2 | 2 | <div class="page-head"> |
| 3 | - <div class="page-title"> | |
| 4 | - <h1>添加线路</h1> | |
| 5 | - </div> | |
| 3 | + <div class="page-title"> | |
| 4 | + <h1>添加线路</h1> | |
| 5 | + </div> | |
| 6 | 6 | </div> |
| 7 | 7 | <!-- 片段标题 END --> |
| 8 | 8 | |
| 9 | 9 | <!-- 线路信息导航栏组件 START --> |
| 10 | 10 | <ul class="page-breadcrumb breadcrumb"> |
| 11 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 12 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 13 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 14 | - <li><span class="active">添加线路</span></li> | |
| 11 | + <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 12 | + <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 13 | + <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 14 | + <li><span class="active">添加线路</span></li> | |
| 15 | 15 | </ul> |
| 16 | 16 | <!-- 线路信息导航栏组件 END --> |
| 17 | 17 | |
| 18 | 18 | <!-- 信息容器组件 START --> |
| 19 | 19 | <div class="portlet light bordered"> |
| 20 | - | |
| 21 | - <!-- 信息容器组件标题 START --> | |
| 22 | - <div class="portlet-title"> | |
| 23 | - <div class="caption"> | |
| 24 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 25 | - <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 26 | - </div> | |
| 27 | - </div> | |
| 28 | - <!-- 信息容器组件标题 END --> | |
| 29 | - | |
| 30 | - <!-- 表单容器组件 START --> | |
| 31 | - <div class="portlet-body form"> | |
| 32 | - | |
| 33 | - <!-- line_add_form FORM START --> | |
| 34 | - <form action="/line" class="form-horizontal" id="line_add_form" > | |
| 35 | - | |
| 36 | - <!-- 表单验证错误提示组件 START --> | |
| 37 | - <div class="alert alert-danger display-hide"> | |
| 38 | - <button class="close" data-close="alert"></button> | |
| 39 | - 您的输入有误,请检查下面的输入项 | |
| 40 | - </div> | |
| 41 | - <!-- 表单验证错误提示组件 END --> | |
| 42 | - | |
| 43 | - <!-- 表单字段内容 START --> | |
| 44 | - <div class="form-body"> | |
| 45 | - | |
| 46 | - <!-- 表单分组组件 form-group START --> | |
| 47 | - <div class="form-group"> | |
| 48 | - <!-- 线路编码 (* 必填项) START --> | |
| 49 | - <div class="col-md-6"> | |
| 50 | - <label class="control-label col-md-5"> | |
| 51 | - <span class="required"> * </span>线路编码 : | |
| 52 | - </label> | |
| 53 | - <div class="col-md-4"> | |
| 54 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 55 | - </div> | |
| 56 | - </div> | |
| 57 | - <!-- 线路编码 (* 必填项) END --> | |
| 58 | - | |
| 59 | - <!-- 线路名称 (* 必填项) START --> | |
| 60 | - <div class="col-md-6"> | |
| 61 | - <label class="control-label col-md-5"> | |
| 62 | - <span class="required"> * </span>线路名称 : | |
| 63 | - </label> | |
| 64 | - <div class="col-md-4"> | |
| 65 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 66 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 67 | - </div> | |
| 68 | - </div> | |
| 69 | - <!-- 线路名称 (* 必填项) END --> | |
| 70 | - </div> | |
| 71 | - <!-- 表单分组组件 form-group END --> | |
| 72 | - | |
| 73 | - <!-- 表单分组组件 form-group START --> | |
| 74 | - <div class="form-group"> | |
| 75 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 76 | - <div class="col-md-6"> | |
| 77 | - <label class="control-label col-md-5"> | |
| 78 | - <span class="required"> * </span>所属公司 : | |
| 79 | - </label> | |
| 80 | - <div class="col-md-4"> | |
| 81 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 82 | - </div> | |
| 83 | - </div> | |
| 84 | - <!-- 所属公司 END --> | |
| 85 | - | |
| 86 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 87 | - <div class="col-md-6"> | |
| 88 | - <label class="control-label col-md-5"> | |
| 89 | - <span class="required"> * </span>所属分公司 : | |
| 90 | - </label> | |
| 91 | - <div class="col-md-4"> | |
| 92 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 93 | - </div> | |
| 94 | - </div> | |
| 95 | - <!-- 所属分公司 END --> | |
| 96 | - </div> | |
| 97 | - <!-- 表单分组组件 form-group END --> | |
| 98 | - | |
| 99 | - <!-- 表单分组组件 form-group START --> | |
| 100 | - <div class="form-group"> | |
| 101 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 102 | - <div class="col-md-6"> | |
| 103 | - <label class="control-label col-md-5"> | |
| 104 | - <span class="required"> * </span>线路等级 : | |
| 105 | - </label> | |
| 106 | - <div class="col-md-4"> | |
| 107 | - <select name="level" class="form-control" id="levelSelect"> | |
| 108 | - <option value="">-- 请选择线路等级 --</option> | |
| 109 | - <option value="1">一级线路</option> | |
| 110 | - <option value="2">二级线路</option> | |
| 111 | - <option value="0">未知等级</option> | |
| 112 | - </select> | |
| 113 | - </div> | |
| 114 | - </div> | |
| 115 | - <!-- 线路等级 END --> | |
| 116 | - | |
| 117 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 118 | - <div class="col-md-6"> | |
| 119 | - <label class="control-label col-md-5"> | |
| 120 | - <span class="required"> * </span>线路性质 : | |
| 121 | - </label> | |
| 122 | - <div class="col-md-4"> | |
| 123 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 124 | - <option value="">-- 请选择线路性质 --</option> | |
| 125 | - <option value="lj">路救</option> | |
| 126 | - <option value="bc">备车</option> | |
| 127 | - <option value="dbc">定班车</option> | |
| 128 | - <option value="yxl">夜宵路</option> | |
| 129 | - <option value="cgxl">常规线路</option> | |
| 130 | - <option value="gjxl">过江线路</option> | |
| 131 | - <option value="csbs">穿梭巴士</option> | |
| 132 | - <option value="tyxl">特约线路</option> | |
| 133 | - <option value="cctxl">村村通线路</option> | |
| 134 | - <option value="qt">其他</option> | |
| 135 | - </select> | |
| 136 | - </div> | |
| 137 | - </div> | |
| 138 | - <!-- 线路性质 END --> | |
| 139 | - </div> | |
| 140 | - <!-- 表单分组组件 form-group END --> | |
| 141 | - | |
| 142 | - <!-- 表单分组组件 form-group START --> | |
| 143 | - <div class="form-group"> | |
| 144 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 145 | - <div class="col-md-6"> | |
| 146 | - <label class="control-label col-md-5"> | |
| 147 | - <span class="required"> * </span>是否宵夜 : | |
| 148 | - </label> | |
| 149 | - <div class="col-md-4"> | |
| 150 | - <div class="md-radio-inline"> | |
| 151 | - <div class="md-radio"> | |
| 152 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 153 | - <label for="radio16"> | |
| 154 | - <span></span> | |
| 155 | - <span class="check"></span> | |
| 156 | - <span class="box"></span> 是 | |
| 157 | - </label> | |
| 158 | - </div> | |
| 159 | - <div class="md-radio has-error"> | |
| 160 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 161 | - <label for="radio17" style="color:#FFC0CB"> | |
| 162 | - <span></span> | |
| 163 | - <span class="check"></span> | |
| 164 | - <span class="box"></span> 否 | |
| 165 | - </label> | |
| 166 | - </div> | |
| 167 | - </div> | |
| 168 | - </div> | |
| 169 | - </div> | |
| 170 | - <!-- 是否宵夜 END --> | |
| 171 | - | |
| 172 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 173 | - <div class="col-md-6"> | |
| 174 | - <label class="control-label col-md-5"> | |
| 175 | - <span class="required"> * </span>是否撤销 : | |
| 176 | - </label> | |
| 177 | - <div class="col-md-4"> | |
| 178 | - <div class="md-radio-inline"> | |
| 179 | - <div class="md-radio"> | |
| 180 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 181 | - <label for="radio14"> | |
| 182 | - <span></span> | |
| 183 | - <span class="check"></span> | |
| 184 | - <span class="box"></span> 是 | |
| 185 | - </label> | |
| 186 | - </div> | |
| 187 | - <div class="md-radio has-error"> | |
| 188 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 189 | - <label for="radio15" style="color:#FFC0CB"> | |
| 190 | - <span></span> | |
| 191 | - <span class="check"></span> | |
| 192 | - <span class="box"></span> 否 | |
| 193 | - </label> | |
| 194 | - </div> | |
| 195 | - </div> | |
| 196 | - </div> | |
| 197 | - </div> | |
| 198 | - <!-- 是否撤销 START --> | |
| 199 | - </div> | |
| 200 | - <!-- 表单分组组件 form-group END --> | |
| 201 | - | |
| 202 | - <!-- 表单分组组件 form-group START --> | |
| 203 | - <div class="form-group"> | |
| 204 | - <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 205 | - <div class="col-md-6"> | |
| 206 | - <label class="control-label col-md-5"> | |
| 207 | - <span class="required"> * </span>是否营运线路 : | |
| 208 | - </label> | |
| 209 | - <div class="col-md-4"> | |
| 210 | - <div class="md-radio-inline"> | |
| 211 | - <div class="md-radio"> | |
| 212 | - <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" data-title="是" checked="checked" > | |
| 213 | - <label for="radio18"> | |
| 214 | - <span></span> | |
| 215 | - <span class="check"></span> | |
| 216 | - <span class="box"></span> 是 | |
| 217 | - </label> | |
| 218 | - </div> | |
| 219 | - <div class="md-radio has-error"> | |
| 220 | - <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" data-title="否" > | |
| 221 | - <label for="radio19" style="color:#FFC0CB"> | |
| 222 | - <span></span> | |
| 223 | - <span class="check"></span> | |
| 224 | - <span class="box"></span> 否 | |
| 225 | - </label> | |
| 226 | - </div> | |
| 227 | - </div> | |
| 228 | - </div> | |
| 229 | - </div> | |
| 230 | - <!-- 是否营运 END --> | |
| 231 | - <!-- 权证车辆数 START --> | |
| 232 | - <div class="col-md-6"> | |
| 233 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 234 | - <div class="col-md-4"> | |
| 235 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 236 | - </div> | |
| 237 | - </div> | |
| 238 | - <!-- 权证车辆数 END --> | |
| 239 | - | |
| 240 | - </div> | |
| 241 | - <!-- 表单分组组件 form-group END --> | |
| 242 | - | |
| 243 | - <!-- 表单分组组件 form-group START --> | |
| 244 | - <div class="form-group"> | |
| 245 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 246 | - <div class="col-md-6"> | |
| 247 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 248 | - 起始站名称 : | |
| 249 | - </label> | |
| 250 | - <div class="col-md-4"> | |
| 251 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 252 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 253 | - </div> | |
| 254 | - </div> | |
| 255 | - <!-- 起始站名称 END --> | |
| 256 | - | |
| 257 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 258 | - <div class="col-md-6"> | |
| 259 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 260 | - <div class="col-md-4"> | |
| 261 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 262 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 263 | - </div> | |
| 264 | - </div> | |
| 265 | - <!-- 终点站名称 END --> | |
| 266 | - </div> | |
| 267 | - <!-- 表单分组组件 form-group END --> | |
| 268 | - | |
| 269 | - <!-- 表单分组组件 form-group START --> | |
| 270 | - <div class="form-group"> | |
| 271 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 272 | - <div class="col-md-6"> | |
| 273 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 274 | - <div class="col-md-4"> | |
| 275 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 276 | - <span class="help-block"> 例如 :06:00 </span> | |
| 277 | - </div> | |
| 278 | - </div> | |
| 279 | - <!-- 起始站首班车时间 END --> | |
| 280 | - | |
| 281 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 282 | - <div class="col-md-6"> | |
| 283 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 284 | - <div class="col-md-4"> | |
| 285 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 286 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 287 | - <span class="help-block"> 例如 :17:00 </span> | |
| 288 | - </div> | |
| 289 | - </div> | |
| 290 | - <!-- 起始站末班车时间 END --> | |
| 291 | - </div> | |
| 292 | - <!-- 表单分组组件 form-group END --> | |
| 293 | - | |
| 294 | - <!-- 表单分组组件 form-group START --> | |
| 295 | - <div class="form-group"> | |
| 296 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 297 | - <div class="col-md-6"> | |
| 298 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 299 | - <div class="col-md-4"> | |
| 300 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 301 | - <span class="help-block"> 例如 :05:00 </span> | |
| 302 | - </div> | |
| 303 | - </div> | |
| 304 | - <!-- 终点站首班车时间 END --> | |
| 305 | - | |
| 306 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 307 | - <div class="col-md-6"> | |
| 308 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 309 | - <div class="col-md-4"> | |
| 310 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 311 | - <span class="help-block"> 例如 :18:00 </span> | |
| 312 | - </div> | |
| 313 | - </div> | |
| 314 | - <!-- 终点站末班车时间 END --> | |
| 315 | - </div> | |
| 316 | - <!-- 表单分组组件 form-group END --> | |
| 317 | - | |
| 318 | - <!-- 表单分组组件 form-group START --> | |
| 319 | - <div class="form-group"> | |
| 320 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 321 | - <div class="col-md-6"> | |
| 322 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 323 | - <div class="col-md-4"> | |
| 324 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 325 | - <option value="">-- 请选择线路类型 --</option> | |
| 326 | - <option value="0">双向</option> | |
| 327 | - <option value="1">环线</option> | |
| 328 | - </select> | |
| 329 | - </div> | |
| 330 | - </div> | |
| 331 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 332 | - | |
| 333 | - <!--大间隔等级 START --> | |
| 334 | - <div class="col-md-6"> | |
| 335 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 336 | - <div class="col-md-4"> | |
| 337 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 338 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 339 | - <option value="1">一级</option> | |
| 340 | - <option value="2">二级</option> | |
| 341 | - <option value="3">三级</option> | |
| 342 | - <option value="4">四级</option> | |
| 343 | - <option value="5">五级</option> | |
| 344 | - </select> | |
| 345 | - </div> | |
| 346 | - </div> | |
| 347 | - <!-- 大间隔等级END --> | |
| 348 | - </div> | |
| 349 | - <!-- 表单分组组件 form-group START --> | |
| 350 | - | |
| 351 | - <!-- 表单分组组件 form-group START --> | |
| 352 | - <div class="form-group"> | |
| 353 | - <!-- 线路简称 START --> | |
| 354 | - <div class="col-md-6"> | |
| 355 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 356 | - <div class="col-md-4"> | |
| 357 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 358 | - </div> | |
| 359 | - </div> | |
| 360 | - <!-- 线路简称 END --> | |
| 361 | - | |
| 362 | - <!-- 英文名称 START --> | |
| 363 | - <div class="col-md-6"> | |
| 364 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 365 | - <div class="col-md-4"> | |
| 366 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 367 | - </div> | |
| 368 | - </div> | |
| 369 | - <!-- 英文名称 END --> | |
| 370 | - </div> | |
| 371 | - <!-- 表单分组组件 form-group END --> | |
| 372 | - | |
| 373 | - <!-- 表单分组组件 form-group START --> | |
| 374 | - <div class="form-group"> | |
| 375 | - <!-- 上海市线路编码 START --> | |
| 376 | - <div class="col-md-6"> | |
| 377 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 378 | - <div class="col-md-4"> | |
| 379 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 380 | - </div> | |
| 381 | - </div> | |
| 382 | - <!-- 上海市线路编码 END --> | |
| 383 | - | |
| 384 | - <!--设备线路编码 START --> | |
| 385 | - <div class="col-md-6"> | |
| 386 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 387 | - <div class="col-md-4"> | |
| 388 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 389 | - </div> | |
| 390 | - </div> | |
| 391 | - <!--设备线路编码 END --> | |
| 392 | - </div> | |
| 393 | - <!-- 表单分组组件 form-group END --> | |
| 394 | - | |
| 395 | - <!-- 表单分组组件 form-group START --> | |
| 396 | - <div class="form-group"> | |
| 397 | - <!-- 起始站调度电话 START --> | |
| 398 | - <div class="col-md-6"> | |
| 399 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 400 | - <div class="col-md-4"> | |
| 401 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 402 | - </div> | |
| 403 | - </div> | |
| 404 | - <!-- 起始站调度电话 END --> | |
| 405 | - | |
| 406 | - <!-- 终点站调度电话 START --> | |
| 407 | - <div class="col-md-6"> | |
| 408 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 409 | - <div class="col-md-4"> | |
| 410 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 411 | - </div> | |
| 412 | - </div> | |
| 413 | - <!-- 终点站调度电话 START --> | |
| 414 | - </div> | |
| 415 | - <!-- 表单分组组件 form-group END --> | |
| 416 | - | |
| 417 | - <!-- 表单分组组件 form-group START --> | |
| 418 | - <div class="form-group"> | |
| 419 | - <!-- 车辆总数 START --> | |
| 420 | - <div class="col-md-6"> | |
| 421 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 422 | - <div class="col-md-4"> | |
| 423 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 424 | - </div> | |
| 425 | - </div> | |
| 426 | - <!-- 车辆总数 END --> | |
| 427 | - | |
| 428 | - <!-- 普通车辆数 START --> | |
| 429 | - <div class="col-md-6"> | |
| 430 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 431 | - <div class="col-md-4"> | |
| 432 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 433 | - </div> | |
| 434 | - </div> | |
| 435 | - <!-- 普通车辆数 END --> | |
| 436 | - </div> | |
| 437 | - <!-- 表单分组组件 form-group END --> | |
| 438 | - | |
| 439 | - <!-- 表单分组组件 form-group START --> | |
| 440 | - <div class="form-group"> | |
| 441 | - <!-- 空调车辆数 START --> | |
| 442 | - <div class="col-md-6"> | |
| 443 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 444 | - <div class="col-md-4"> | |
| 445 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 446 | - </div> | |
| 447 | - </div> | |
| 448 | - <!-- 空调车辆数 END --> | |
| 449 | - | |
| 450 | - <!-- 开辟日期 START --> | |
| 451 | - <div class="col-md-6"> | |
| 452 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 453 | - <div class="col-md-4"> | |
| 454 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 455 | - </div> | |
| 456 | - </div> | |
| 457 | - <!-- 开辟日期 END --> | |
| 458 | - </div> | |
| 459 | - <!-- 表单分组组件 form-group END --> | |
| 460 | - | |
| 461 | - <!-- 表单分组组件 form-group START --> | |
| 462 | - <div class="form-group"> | |
| 463 | - <!-- 线路沿革 START --> | |
| 464 | - <div class="col-md-6"> | |
| 465 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 466 | - <div class="col-md-4"> | |
| 467 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 468 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 469 | - </div> | |
| 470 | - </div> | |
| 471 | - <!-- 线路沿革 END --> | |
| 472 | - | |
| 473 | - <!-- 描述/说明 START --> | |
| 474 | - <div class="col-md-6"> | |
| 475 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 476 | - <div class="col-md-4"> | |
| 477 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 478 | - </div> | |
| 479 | - </div> | |
| 480 | - <!-- 描述/说明 END --> | |
| 481 | - </div> | |
| 482 | - <!-- 表单分组组件 form-group END --> | |
| 483 | - </div> | |
| 484 | - <!-- 表单字段内容 END --> | |
| 485 | - | |
| 486 | - <!-- 表单按钮组件 START --> | |
| 487 | - <div class="form-actions"> | |
| 488 | - <div class="row"> | |
| 489 | - <div class="col-md-offset-5 col-md-7"> | |
| 490 | - <button type="submit" class="btn green" id="submintBtn"><i class="fa fa-check"></i> 提交</button> | |
| 491 | - <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> 取消</a> | |
| 492 | - </div> | |
| 493 | - </div> | |
| 494 | - </div> | |
| 495 | - <!-- 表单按钮组件 END --> | |
| 496 | - | |
| 497 | - </form> | |
| 498 | - <!-- line_add_form FORM END --> | |
| 499 | - | |
| 500 | - </div> | |
| 501 | - <!-- 表单组件 END --> | |
| 502 | - | |
| 20 | + | |
| 21 | + <!-- 信息容器组件标题 START --> | |
| 22 | + <div class="portlet-title"> | |
| 23 | + <div class="caption"> | |
| 24 | + <i class="icon-equalizer font-red-sunglo"></i> | |
| 25 | + <span class="caption-subject font-red-sunglo bold uppercase">添加线路</span> | |
| 26 | + </div> | |
| 27 | + </div> | |
| 28 | + <!-- 信息容器组件标题 END --> | |
| 29 | + | |
| 30 | + <!-- 表单容器组件 START --> | |
| 31 | + <div class="portlet-body form"> | |
| 32 | + | |
| 33 | + <!-- line_add_form FORM START --> | |
| 34 | + <form action="/line" class="form-horizontal" id="line_add_form"> | |
| 35 | + | |
| 36 | + <!-- 表单验证错误提示组件 START --> | |
| 37 | + <div class="alert alert-danger display-hide"> | |
| 38 | + <button class="close" data-close="alert"></button> | |
| 39 | + 您的输入有误,请检查下面的输入项 | |
| 40 | + </div> | |
| 41 | + <!-- 表单验证错误提示组件 END --> | |
| 42 | + | |
| 43 | + <!-- 表单字段内容 START --> | |
| 44 | + <div class="form-body"> | |
| 45 | + | |
| 46 | + <!-- 表单分组组件 form-group START --> | |
| 47 | + <div class="form-group"> | |
| 48 | + <!-- 线路编码 (* 必填项) START --> | |
| 49 | + <div class="col-md-6"> | |
| 50 | + <label class="control-label col-md-5"> | |
| 51 | + <span class="required"> * </span>线路编码 : | |
| 52 | + </label> | |
| 53 | + <div class="col-md-4"> | |
| 54 | + <input type="text" class="form-control" name="lineCode" id="lineCodeInput" | |
| 55 | + placeholder="线路编码"> | |
| 56 | + </div> | |
| 57 | + </div> | |
| 58 | + <!-- 线路编码 (* 必填项) END --> | |
| 59 | + | |
| 60 | + <!-- 线路名称 (* 必填项) START --> | |
| 61 | + <div class="col-md-6"> | |
| 62 | + <label class="control-label col-md-5"> | |
| 63 | + <span class="required"> * </span>线路名称 : | |
| 64 | + </label> | |
| 65 | + <div class="col-md-4"> | |
| 66 | + <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称"/> | |
| 67 | + <span class="help-block"> 例如 :浦东88路 </span> | |
| 68 | + </div> | |
| 69 | + </div> | |
| 70 | + <!-- 线路名称 (* 必填项) END --> | |
| 71 | + </div> | |
| 72 | + | |
| 73 | + <!-- 表单分组组件 form-group START --> | |
| 74 | + <div class="form-group"> | |
| 75 | + <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 76 | + <div class="col-md-6"> | |
| 77 | + <label class="control-label col-md-5"> | |
| 78 | + <span class="required"> * </span>所属公司 : | |
| 79 | + </label> | |
| 80 | + <div class="col-md-4"> | |
| 81 | + <select name="company" class="form-control" id="companySelect"></select> | |
| 82 | + </div> | |
| 83 | + </div> | |
| 84 | + <!-- 所属公司 END --> | |
| 85 | + | |
| 86 | + <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 87 | + <div class="col-md-6"> | |
| 88 | + <label class="control-label col-md-5"> | |
| 89 | + <span class="required"> * </span>所属分公司 : | |
| 90 | + </label> | |
| 91 | + <div class="col-md-4"> | |
| 92 | + <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 93 | + </div> | |
| 94 | + </div> | |
| 95 | + <!-- 所属分公司 END --> | |
| 96 | + </div> | |
| 97 | + <!-- 表单分组组件 form-group END --> | |
| 98 | + | |
| 99 | + <!-- 表单分组组件 form-group START --> | |
| 100 | + <div class="form-group"> | |
| 101 | + <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 102 | + <div class="col-md-6"> | |
| 103 | + <label class="control-label col-md-5"> | |
| 104 | + <span class="required"> * </span>线路等级 : | |
| 105 | + </label> | |
| 106 | + <div class="col-md-4"> | |
| 107 | + <select name="level" class="form-control" id="levelSelect"> | |
| 108 | + <option value="">-- 请选择线路等级 --</option> | |
| 109 | + <option value="1">一级线路</option> | |
| 110 | + <option value="2">二级线路</option> | |
| 111 | + <option value="0">未知等级</option> | |
| 112 | + </select> | |
| 113 | + </div> | |
| 114 | + </div> | |
| 115 | + <!-- 线路等级 END --> | |
| 116 | + | |
| 117 | + <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 118 | + <div class="col-md-6"> | |
| 119 | + <label class="control-label col-md-5"> | |
| 120 | + <span class="required"> * </span>线路性质 : | |
| 121 | + </label> | |
| 122 | + <div class="col-md-4"> | |
| 123 | + <select name="nature" class="form-control" id="natureSelect"> | |
| 124 | + <option value="">-- 请选择线路性质 --</option> | |
| 125 | + <option value="lj">路救</option> | |
| 126 | + <option value="bc">备车</option> | |
| 127 | + <option value="dbc">定班车</option> | |
| 128 | + <option value="yxl">夜宵路</option> | |
| 129 | + <option value="cgxl">常规线路</option> | |
| 130 | + <option value="gjxl">过江线路</option> | |
| 131 | + <option value="csbs">穿梭巴士</option> | |
| 132 | + <option value="tyxl">特约线路</option> | |
| 133 | + <option value="cctxl">村村通线路</option> | |
| 134 | + <option value="qt">其他</option> | |
| 135 | + </select> | |
| 136 | + </div> | |
| 137 | + </div> | |
| 138 | + <!-- 线路性质 END --> | |
| 139 | + </div> | |
| 140 | + <!-- 表单分组组件 form-group END --> | |
| 141 | + | |
| 142 | + <!-- 表单分组组件 form-group START --> | |
| 143 | + <div class="form-group"> | |
| 144 | + <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 145 | + <div class="col-md-6"> | |
| 146 | + <label class="control-label col-md-5"> | |
| 147 | + <span class="required"> * </span>是否宵夜 : | |
| 148 | + </label> | |
| 149 | + <div class="col-md-4"> | |
| 150 | + <div class="md-radio-inline"> | |
| 151 | + <div class="md-radio"> | |
| 152 | + <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" | |
| 153 | + data-title="是"> | |
| 154 | + <label for="radio16"> | |
| 155 | + <span></span> | |
| 156 | + <span class="check"></span> | |
| 157 | + <span class="box"></span> 是 | |
| 158 | + </label> | |
| 159 | + </div> | |
| 160 | + <div class="md-radio has-error"> | |
| 161 | + <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" | |
| 162 | + data-title="否" checked="checked"> | |
| 163 | + <label for="radio17" style="color:#FFC0CB"> | |
| 164 | + <span></span> | |
| 165 | + <span class="check"></span> | |
| 166 | + <span class="box"></span> 否 | |
| 167 | + </label> | |
| 168 | + </div> | |
| 169 | + </div> | |
| 170 | + </div> | |
| 171 | + </div> | |
| 172 | + <!-- 是否宵夜 END --> | |
| 173 | + | |
| 174 | + <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 175 | + <div class="col-md-6"> | |
| 176 | + <label class="control-label col-md-5"> | |
| 177 | + <span class="required"> * </span>是否撤销 : | |
| 178 | + </label> | |
| 179 | + <div class="col-md-4"> | |
| 180 | + <div class="md-radio-inline"> | |
| 181 | + <div class="md-radio"> | |
| 182 | + <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" | |
| 183 | + value="1"> | |
| 184 | + <label for="radio14"> | |
| 185 | + <span></span> | |
| 186 | + <span class="check"></span> | |
| 187 | + <span class="box"></span> 是 | |
| 188 | + </label> | |
| 189 | + </div> | |
| 190 | + <div class="md-radio has-error"> | |
| 191 | + <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" | |
| 192 | + value="0" checked="checked"> | |
| 193 | + <label for="radio15" style="color:#FFC0CB"> | |
| 194 | + <span></span> | |
| 195 | + <span class="check"></span> | |
| 196 | + <span class="box"></span> 否 | |
| 197 | + </label> | |
| 198 | + </div> | |
| 199 | + </div> | |
| 200 | + </div> | |
| 201 | + </div> | |
| 202 | + <!-- 是否撤销 START --> | |
| 203 | + </div> | |
| 204 | + <!-- 表单分组组件 form-group END --> | |
| 205 | + | |
| 206 | + <!-- 表单分组组件 form-group START --> | |
| 207 | + <div class="form-group"> | |
| 208 | + <!-- 是否营运START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 209 | + <div class="col-md-6"> | |
| 210 | + <label class="control-label col-md-5"> | |
| 211 | + <span class="required"> * </span>是否营运线路 : | |
| 212 | + </label> | |
| 213 | + <div class="col-md-4"> | |
| 214 | + <div class="md-radio-inline"> | |
| 215 | + <div class="md-radio"> | |
| 216 | + <input type="radio" id="radio18" name="sfyy" class="md-radiobtn" value="1" | |
| 217 | + data-title="是" checked="checked"> | |
| 218 | + <label for="radio18"> | |
| 219 | + <span></span> | |
| 220 | + <span class="check"></span> | |
| 221 | + <span class="box"></span> 是 | |
| 222 | + </label> | |
| 223 | + </div> | |
| 224 | + <div class="md-radio has-error"> | |
| 225 | + <input type="radio" id="radio19" name="sfyy" class="md-radiobtn" value="0" | |
| 226 | + data-title="否"> | |
| 227 | + <label for="radio19" style="color:#FFC0CB"> | |
| 228 | + <span></span> | |
| 229 | + <span class="check"></span> | |
| 230 | + <span class="box"></span> 否 | |
| 231 | + </label> | |
| 232 | + </div> | |
| 233 | + </div> | |
| 234 | + </div> | |
| 235 | + </div> | |
| 236 | + <!-- 是否营运 END --> | |
| 237 | + <!-- 权证车辆数 START --> | |
| 238 | + <div class="col-md-6"> | |
| 239 | + <label class="control-label col-md-5"> | |
| 240 | + 权证车辆数 : </label> | |
| 241 | + <div class="col-md-4"> | |
| 242 | + <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" | |
| 243 | + placeholder="权证车辆数"> | |
| 244 | + </div> | |
| 245 | + </div> | |
| 246 | + <!-- 权证车辆数 END --> | |
| 247 | + | |
| 248 | + </div> | |
| 249 | + <!-- 表单分组组件 form-group END --> | |
| 250 | + | |
| 251 | + <!-- 表单分组组件 form-group START --> | |
| 252 | + <div class="form-group"> | |
| 253 | + <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 254 | + <div class="col-md-6"> | |
| 255 | + <label class="control-label col-md-5"><span class="required"> * </span> | |
| 256 | + 起始站名称 : | |
| 257 | + </label> | |
| 258 | + <div class="col-md-4"> | |
| 259 | + <input type="text" class="form-control" name="startStationName" id="startStationNameInput" | |
| 260 | + placeholder="起始站名称"> | |
| 261 | + <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 262 | + </div> | |
| 263 | + </div> | |
| 264 | + <!-- 起始站名称 END --> | |
| 265 | + | |
| 266 | + <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 267 | + <div class="col-md-6"> | |
| 268 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : | |
| 269 | + </label> | |
| 270 | + <div class="col-md-4"> | |
| 271 | + <input type="text" class="form-control" name="endStationName" id="endStationNameInput" | |
| 272 | + placeholder="终点站名称"> | |
| 273 | + <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 274 | + </div> | |
| 275 | + </div> | |
| 276 | + <!-- 终点站名称 END --> | |
| 277 | + </div> | |
| 278 | + <!-- 表单分组组件 form-group END --> | |
| 279 | + | |
| 280 | + <!-- 表单分组组件 form-group START --> | |
| 281 | + <div class="form-group"> | |
| 282 | + <!-- 起始站首班车时间 (* 必填项) START --> | |
| 283 | + <div class="col-md-6"> | |
| 284 | + <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 285 | + <div class="col-md-4"> | |
| 286 | + <input type="text" class="form-control" name="startStationFirstTime" | |
| 287 | + id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 288 | + <span class="help-block"> 例如 :06:00 </span> | |
| 289 | + </div> | |
| 290 | + </div> | |
| 291 | + <!-- 起始站首班车时间 END --> | |
| 292 | + | |
| 293 | + <!-- 起始站末班车时间 (* 必填项) START --> | |
| 294 | + <div class="col-md-6"> | |
| 295 | + <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 296 | + <div class="col-md-4"> | |
| 297 | + <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 298 | + <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" | |
| 299 | + placeholder="起始站末班车时间"> | |
| 300 | + <span class="help-block"> 例如 :17:00 </span> | |
| 301 | + </div> | |
| 302 | + </div> | |
| 303 | + <!-- 起始站末班车时间 END --> | |
| 304 | + </div> | |
| 305 | + <!-- 表单分组组件 form-group END --> | |
| 306 | + | |
| 307 | + <!-- 表单分组组件 form-group START --> | |
| 308 | + <div class="form-group"> | |
| 309 | + <!-- 终点站首班车时间 (* 必填项) START --> | |
| 310 | + <div class="col-md-6"> | |
| 311 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 312 | + <div class="col-md-4"> | |
| 313 | + <input type="text" class="form-control" name="endStationFirstTime" | |
| 314 | + id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 315 | + <span class="help-block"> 例如 :05:00 </span> | |
| 316 | + </div> | |
| 317 | + </div> | |
| 318 | + <!-- 终点站首班车时间 END --> | |
| 319 | + | |
| 320 | + <!-- 终点站末班车时间 (* 必填项) START --> | |
| 321 | + <div class="col-md-6"> | |
| 322 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 323 | + <div class="col-md-4"> | |
| 324 | + <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" | |
| 325 | + placeholder="终点站末班车时间 "> | |
| 326 | + <span class="help-block"> 例如 :18:00 </span> | |
| 327 | + </div> | |
| 328 | + </div> | |
| 329 | + <!-- 终点站末班车时间 END --> | |
| 330 | + </div> | |
| 331 | + <!-- 表单分组组件 form-group END --> | |
| 332 | + | |
| 333 | + <!-- 表单分组组件 form-group START --> | |
| 334 | + <div class="form-group"> | |
| 335 | + <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 336 | + <div class="col-md-6"> | |
| 337 | + <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 338 | + <div class="col-md-4"> | |
| 339 | + <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 340 | + <!--<option value="">-- 请选择线路类型 --</option>--> | |
| 341 | + <option value="0">双向</option> | |
| 342 | + <option value="1">环线</option> | |
| 343 | + </select> | |
| 344 | + </div> | |
| 345 | + </div> | |
| 346 | + <!-- 线路规划类型 (* 必填项) END --> | |
| 347 | + | |
| 348 | + <!--车辆区域 START --> | |
| 349 | + <div class="col-md-6"> | |
| 350 | + <label class="control-label col-md-5"> <span class="required"> * </span>线路区域 : | |
| 351 | + </label> | |
| 352 | + <div class="col-md-4"> | |
| 353 | + <select name="region" class="form-control" id="regionSelect"> | |
| 354 | + <!--<option value="">-- 请选择车辆区域 --</option>--> | |
| 355 | + <option value="0">区内</option> | |
| 356 | + <option value="1">区外</option> | |
| 357 | + </select> | |
| 358 | + </div> | |
| 359 | + </div> | |
| 360 | + <!--车辆区域END --> | |
| 361 | + | |
| 362 | + </div> | |
| 363 | + <!-- 表单分组组件 form-group START --> | |
| 364 | + | |
| 365 | + | |
| 366 | + <div class="form-group"> | |
| 367 | + <!--大间隔等级 START --> | |
| 368 | + <div class="col-md-6"> | |
| 369 | + <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 370 | + <div class="col-md-4"> | |
| 371 | + <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 372 | + <option value="">-- 请选择大间隔等级 --</option> | |
| 373 | + <option value="1">一级</option> | |
| 374 | + <option value="2">二级</option> | |
| 375 | + <option value="3">三级</option> | |
| 376 | + <option value="4">四级</option> | |
| 377 | + <option value="5">五级</option> | |
| 378 | + </select> | |
| 379 | + </div> | |
| 380 | + </div> | |
| 381 | + <!-- 大间隔等级END --> | |
| 382 | + </div> | |
| 383 | + | |
| 384 | + <!-- 表单分组组件 form-group START --> | |
| 385 | + <div class="form-group"> | |
| 386 | + <!-- 线路简称 START --> | |
| 387 | + <div class="col-md-6"> | |
| 388 | + <label class="control-label col-md-5"> 线路简称 :</label> | |
| 389 | + <div class="col-md-4"> | |
| 390 | + <input type="text" class="form-control" name="shortName" id="shortNameInput" | |
| 391 | + placeholder="线路简称"> | |
| 392 | + </div> | |
| 393 | + </div> | |
| 394 | + <!-- 线路简称 END --> | |
| 395 | + | |
| 396 | + <!-- 英文名称 START --> | |
| 397 | + <div class="col-md-6"> | |
| 398 | + <label class="control-label col-md-5"> 英文名称 : </label> | |
| 399 | + <div class="col-md-4"> | |
| 400 | + <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 401 | + </div> | |
| 402 | + </div> | |
| 403 | + <!-- 英文名称 END --> | |
| 404 | + </div> | |
| 405 | + <!-- 表单分组组件 form-group END --> | |
| 406 | + | |
| 407 | + <!-- 表单分组组件 form-group START --> | |
| 408 | + <div class="form-group"> | |
| 409 | + <!-- 上海市线路编码 START --> | |
| 410 | + <div class="col-md-6"> | |
| 411 | + <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 412 | + <div class="col-md-4"> | |
| 413 | + <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" | |
| 414 | + placeholder="上海市线路编码"> | |
| 415 | + </div> | |
| 416 | + </div> | |
| 417 | + <!-- 上海市线路编码 END --> | |
| 418 | + | |
| 419 | + <!--设备线路编码 START --> | |
| 420 | + <div class="col-md-6"> | |
| 421 | + <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 422 | + <div class="col-md-4"> | |
| 423 | + <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" | |
| 424 | + placeholder="设备线路编码"> | |
| 425 | + </div> | |
| 426 | + </div> | |
| 427 | + <!--设备线路编码 END --> | |
| 428 | + </div> | |
| 429 | + <!-- 表单分组组件 form-group END --> | |
| 430 | + | |
| 431 | + <!-- 表单分组组件 form-group START --> | |
| 432 | + <div class="form-group"> | |
| 433 | + <!-- 起始站调度电话 START --> | |
| 434 | + <div class="col-md-6"> | |
| 435 | + <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 436 | + <div class="col-md-4"> | |
| 437 | + <input type="text" class="form-control" name="startPhone" id="startPhoneInput" | |
| 438 | + placeholder="起始站调度电话"> | |
| 439 | + </div> | |
| 440 | + </div> | |
| 441 | + <!-- 起始站调度电话 END --> | |
| 442 | + | |
| 443 | + <!-- 终点站调度电话 START --> | |
| 444 | + <div class="col-md-6"> | |
| 445 | + <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 446 | + <div class="col-md-4"> | |
| 447 | + <input type="text" class="form-control" name="endPhone" id="startPhoneInput" | |
| 448 | + placeholder="终点站调度电话"> | |
| 449 | + </div> | |
| 450 | + </div> | |
| 451 | + <!-- 终点站调度电话 START --> | |
| 452 | + </div> | |
| 453 | + <!-- 表单分组组件 form-group END --> | |
| 454 | + | |
| 455 | + <!-- 表单分组组件 form-group START --> | |
| 456 | + <div class="form-group"> | |
| 457 | + <!-- 车辆总数 START --> | |
| 458 | + <div class="col-md-6"> | |
| 459 | + <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 460 | + <div class="col-md-4"> | |
| 461 | + <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" | |
| 462 | + placeholder="车辆总数"> | |
| 463 | + </div> | |
| 464 | + </div> | |
| 465 | + <!-- 车辆总数 END --> | |
| 466 | + | |
| 467 | + <!-- 普通车辆数 START --> | |
| 468 | + <div class="col-md-6"> | |
| 469 | + <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 470 | + <div class="col-md-4"> | |
| 471 | + <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" | |
| 472 | + placeholder="普通车辆数"> | |
| 473 | + </div> | |
| 474 | + </div> | |
| 475 | + <!-- 普通车辆数 END --> | |
| 476 | + </div> | |
| 477 | + <!-- 表单分组组件 form-group END --> | |
| 478 | + | |
| 479 | + <!-- 表单分组组件 form-group START --> | |
| 480 | + <div class="form-group"> | |
| 481 | + <!-- 空调车辆数 START --> | |
| 482 | + <div class="col-md-6"> | |
| 483 | + <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 484 | + <div class="col-md-4"> | |
| 485 | + <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" | |
| 486 | + placeholder="空调车辆数"> | |
| 487 | + </div> | |
| 488 | + </div> | |
| 489 | + <!-- 空调车辆数 END --> | |
| 490 | + | |
| 491 | + <!-- 开辟日期 START --> | |
| 492 | + <div class="col-md-6"> | |
| 493 | + <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 494 | + <div class="col-md-4"> | |
| 495 | + <input type="text" class="form-control" name="openDate" id="openDateInput" | |
| 496 | + placeholder="开辟日期"> | |
| 497 | + </div> | |
| 498 | + </div> | |
| 499 | + <!-- 开辟日期 END --> | |
| 500 | + </div> | |
| 501 | + <!-- 表单分组组件 form-group END --> | |
| 502 | + | |
| 503 | + <!-- 表单分组组件 form-group START --> | |
| 504 | + <div class="form-group"> | |
| 505 | + <!-- 线路沿革 START --> | |
| 506 | + <div class="col-md-6"> | |
| 507 | + <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 508 | + <div class="col-md-4"> | |
| 509 | + <textarea class="form-control" rows="3" name="history" id="historyTextarea" | |
| 510 | + placeholder="线路沿革"></textarea> | |
| 511 | + <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 512 | + </div> | |
| 513 | + </div> | |
| 514 | + <!-- 线路沿革 END --> | |
| 515 | + | |
| 516 | + <!-- 描述/说明 START --> | |
| 517 | + <div class="col-md-6"> | |
| 518 | + <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 519 | + <div class="col-md-4"> | |
| 520 | + <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" | |
| 521 | + placeholder="描述/说明"></textarea> | |
| 522 | + </div> | |
| 523 | + </div> | |
| 524 | + <!-- 描述/说明 END --> | |
| 525 | + </div> | |
| 526 | + <!-- 表单分组组件 form-group END --> | |
| 527 | + </div> | |
| 528 | + <!-- 表单字段内容 END --> | |
| 529 | + | |
| 530 | + <!-- 表单按钮组件 START --> | |
| 531 | + <div class="form-actions"> | |
| 532 | + <div class="row"> | |
| 533 | + <div class="col-md-offset-5 col-md-7"> | |
| 534 | + <button type="submit" class="btn green" id="submintBtn"><i class="fa fa-check"></i> 提交</button> | |
| 535 | + <a type="button" class="btn default" href="list.html" data-pjax><i class="fa fa-times"></i> | |
| 536 | + 取消</a> | |
| 537 | + </div> | |
| 538 | + </div> | |
| 539 | + </div> | |
| 540 | + <!-- 表单按钮组件 END --> | |
| 541 | + | |
| 542 | + </form> | |
| 543 | + <!-- line_add_form FORM END --> | |
| 544 | + | |
| 545 | + </div> | |
| 546 | + <!-- 表单组件 END --> | |
| 547 | + | |
| 503 | 548 | </div> |
| 504 | 549 | <!-- 信息容器组件 END --> |
| 505 | 550 | ... | ... |
src/main/resources/static/pages/base/line/details.html
| 1 | 1 | <!-- 片段标题 START --> |
| 2 | 2 | <div class="page-head"> |
| 3 | - <div class="page-title"> | |
| 4 | - <h1>线路详细信息</h1> | |
| 5 | - </div> | |
| 3 | + <div class="page-title"> | |
| 4 | + <h1>线路详细信息</h1> | |
| 5 | + </div> | |
| 6 | 6 | </div> |
| 7 | 7 | <!-- 片段标题 START --> |
| 8 | 8 | |
| 9 | 9 | <!-- 线路信息导航栏组件 START --> |
| 10 | 10 | <ul class="page-breadcrumb breadcrumb"> |
| 11 | - <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 12 | - <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 13 | - <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 14 | - <li><span class="active">线路详情</span></li> | |
| 11 | + <li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li> | |
| 12 | + <li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li> | |
| 13 | + <li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li> | |
| 14 | + <li><span class="active">线路详情</span></li> | |
| 15 | 15 | </ul> |
| 16 | 16 | <!-- 线路信息导航栏组件 START --> |
| 17 | 17 | |
| 18 | 18 | <!-- 信息容器组件 START --> |
| 19 | 19 | <div class="portlet light bordered"> |
| 20 | 20 | |
| 21 | - <!-- 信息容器组件标题 START --> | |
| 22 | - <div class="portlet-title"> | |
| 23 | - <div class="caption"> | |
| 24 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 25 | - <span class="caption-subject font-red-sunglo bold uppercase">线路详情信息</span> | |
| 26 | - </div> | |
| 27 | - </div> | |
| 28 | - <!-- 信息容器组件标题 END --> | |
| 29 | - | |
| 30 | - <!-- 表单容器组件 START --> | |
| 31 | - <div class="portlet-body form" id="lineDetailsForm"> | |
| 32 | - | |
| 33 | - <!-- START FORM --> | |
| 34 | - <form action="/" class="form-horizontal" id="line_details_form" > | |
| 35 | - | |
| 36 | - <!-- 表单内容 --> | |
| 37 | - <div class="form-body"> | |
| 38 | - | |
| 39 | - <!-- 表单分组组件 form-group START --> | |
| 40 | - <div class="form-group"> | |
| 41 | - <!-- 线路编码 (* 必填项) START --> | |
| 42 | - <div class="col-md-6"> | |
| 43 | - <label class="control-label col-md-5"> | |
| 44 | - <span class="required"> * </span>线路编码 : | |
| 45 | - </label> | |
| 46 | - <div class="col-md-4"> | |
| 47 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码"> | |
| 48 | - </div> | |
| 49 | - </div> | |
| 50 | - <!-- 线路编码 (* 必填项) END --> | |
| 51 | - | |
| 52 | - <!-- 线路名称 (* 必填项) START --> | |
| 53 | - <div class="col-md-6"> | |
| 54 | - <label class="control-label col-md-5"> | |
| 55 | - <span class="required"> * </span>线路名称 : | |
| 56 | - </label> | |
| 57 | - <div class="col-md-4"> | |
| 58 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 59 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 60 | - </div> | |
| 61 | - </div> | |
| 62 | - <!-- 线路名称 (* 必填项) END --> | |
| 63 | - </div> | |
| 64 | - <!-- 表单分组组件 form-group END --> | |
| 65 | - | |
| 66 | - <!-- 表单分组组件 form-group START --> | |
| 67 | - <div class="form-group"> | |
| 68 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 69 | - <div class="col-md-6"> | |
| 70 | - <label class="control-label col-md-5"> | |
| 71 | - <span class="required"> * </span>所属公司 : | |
| 72 | - </label> | |
| 73 | - <div class="col-md-4"> | |
| 74 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 75 | - </div> | |
| 76 | - </div> | |
| 77 | - <!-- 所属公司 END --> | |
| 78 | - | |
| 79 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 80 | - <div class="col-md-6"> | |
| 81 | - <label class="control-label col-md-5"> | |
| 82 | - <span class="required"> * </span>所属分公司 : | |
| 83 | - </label> | |
| 84 | - <div class="col-md-4"> | |
| 85 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 86 | - </div> | |
| 87 | - </div> | |
| 88 | - <!-- 所属分公司 END --> | |
| 89 | - </div> | |
| 90 | - <!-- 表单分组组件 form-group END --> | |
| 91 | - | |
| 92 | - <!-- 表单分组组件 form-group START --> | |
| 93 | - <div class="form-group"> | |
| 94 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 95 | - <div class="col-md-6"> | |
| 96 | - <label class="control-label col-md-5"> | |
| 97 | - <span class="required"> * </span>线路等级 : | |
| 98 | - </label> | |
| 99 | - <div class="col-md-4"> | |
| 100 | - <select name="level" class="form-control" id="levelSelect"> | |
| 101 | - <option value="">-- 请选择线路等级 --</option> | |
| 102 | - <option value="1">一级线路</option> | |
| 103 | - <option value="2">二级线路</option> | |
| 104 | - <option value="0">未知等级</option> | |
| 105 | - </select> | |
| 106 | - </div> | |
| 107 | - </div> | |
| 108 | - <!-- 线路等级 END --> | |
| 109 | - | |
| 110 | - <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 111 | - <div class="col-md-6"> | |
| 112 | - <label class="control-label col-md-5"> | |
| 113 | - <span class="required"> * </span>线路性质 : | |
| 114 | - </label> | |
| 115 | - <div class="col-md-4"> | |
| 116 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 117 | - <option value="">-- 请选择线路性质 --</option> | |
| 118 | - <option value="lj">路救</option> | |
| 119 | - <option value="bc">备车</option> | |
| 120 | - <option value="dbc">定班车</option> | |
| 121 | - <option value="yxl">夜宵路</option> | |
| 122 | - <option value="cgxl">常规线路</option> | |
| 123 | - <option value="gjxl">过江线路</option> | |
| 124 | - <option value="csbs">穿梭巴士</option> | |
| 125 | - <option value="tyxl">特约线路</option> | |
| 126 | - <option value="cctxl">村村通线路</option> | |
| 127 | - <option value="qt">其他</option> | |
| 128 | - </select> | |
| 129 | - </div> | |
| 130 | - </div> | |
| 131 | - <!-- 线路性质 END --> | |
| 132 | - </div> | |
| 133 | - <!-- 表单分组组件 form-group END --> | |
| 134 | - | |
| 135 | - <!-- 表单分组组件 form-group START --> | |
| 136 | - <div class="form-group"> | |
| 137 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 138 | - <div class="col-md-6"> | |
| 139 | - <label class="control-label col-md-5"> | |
| 140 | - <span class="required"> * </span>是否宵夜 : | |
| 141 | - </label> | |
| 142 | - <div class="col-md-4"> | |
| 143 | - <div class="md-radio-inline"> | |
| 144 | - <div class="md-radio"> | |
| 145 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 146 | - <label for="radio16"> | |
| 147 | - <span></span> | |
| 148 | - <span class="check"></span> | |
| 149 | - <span class="box"></span> 是 | |
| 150 | - </label> | |
| 151 | - </div> | |
| 152 | - <div class="md-radio has-error"> | |
| 153 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 154 | - <label for="radio17" style="color:#FFC0CB"> | |
| 155 | - <span></span> | |
| 156 | - <span class="check"></span> | |
| 157 | - <span class="box"></span> 否 | |
| 158 | - </label> | |
| 159 | - </div> | |
| 160 | - </div> | |
| 161 | - </div> | |
| 162 | - </div> | |
| 163 | - <!-- 是否宵夜 END --> | |
| 164 | - | |
| 165 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 166 | - <div class="col-md-6"> | |
| 167 | - <label class="control-label col-md-5"> | |
| 168 | - <span class="required"> * </span>是否撤销 : | |
| 169 | - </label> | |
| 170 | - <div class="col-md-4"> | |
| 171 | - <div class="md-radio-inline"> | |
| 172 | - <div class="md-radio"> | |
| 173 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 174 | - <label for="radio14"> | |
| 175 | - <span></span> | |
| 176 | - <span class="check"></span> | |
| 177 | - <span class="box"></span> 是 | |
| 178 | - </label> | |
| 179 | - </div> | |
| 180 | - <div class="md-radio has-error"> | |
| 181 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 182 | - <label for="radio15" style="color:#FFC0CB"> | |
| 183 | - <span></span> | |
| 184 | - <span class="check"></span> | |
| 185 | - <span class="box"></span> 否 | |
| 186 | - </label> | |
| 187 | - </div> | |
| 188 | - </div> | |
| 189 | - </div> | |
| 190 | - </div> | |
| 191 | - <!-- 是否撤销 START --> | |
| 192 | - </div> | |
| 193 | - <!-- 表单分组组件 form-group END --> | |
| 194 | - | |
| 195 | - <!-- 表单分组组件 form-group START --> | |
| 196 | - <div class="form-group"> | |
| 197 | - <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 198 | - <div class="col-md-6"> | |
| 199 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 200 | - 起始站名称 : | |
| 201 | - </label> | |
| 202 | - <div class="col-md-4"> | |
| 203 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 204 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 205 | - </div> | |
| 206 | - </div> | |
| 207 | - <!-- 起始站名称 END --> | |
| 208 | - | |
| 209 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 210 | - <div class="col-md-6"> | |
| 211 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 212 | - <div class="col-md-4"> | |
| 213 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 214 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 215 | - </div> | |
| 216 | - </div> | |
| 217 | - <!-- 终点站名称 END --> | |
| 218 | - </div> | |
| 219 | - <!-- 表单分组组件 form-group END --> | |
| 220 | - | |
| 221 | - <!-- 表单分组组件 form-group START --> | |
| 222 | - <div class="form-group"> | |
| 223 | - <!-- 起始站首班车时间 (* 必填项) START --> | |
| 224 | - <div class="col-md-6"> | |
| 225 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 226 | - <div class="col-md-4"> | |
| 227 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 228 | - <span class="help-block"> 例如 :06:00 </span> | |
| 229 | - </div> | |
| 230 | - </div> | |
| 231 | - <!-- 起始站首班车时间 END --> | |
| 232 | - | |
| 233 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 234 | - <div class="col-md-6"> | |
| 235 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 236 | - <div class="col-md-4"> | |
| 237 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 238 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 239 | - <span class="help-block"> 例如 :17:00 </span> | |
| 240 | - </div> | |
| 241 | - </div> | |
| 242 | - <!-- 起始站末班车时间 END --> | |
| 243 | - </div> | |
| 244 | - <!-- 表单分组组件 form-group END --> | |
| 245 | - | |
| 246 | - <!-- 表单分组组件 form-group START --> | |
| 247 | - <div class="form-group"> | |
| 248 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 249 | - <div class="col-md-6"> | |
| 250 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 251 | - <div class="col-md-4"> | |
| 252 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 253 | - <span class="help-block"> 例如 :05:00 </span> | |
| 254 | - </div> | |
| 255 | - </div> | |
| 256 | - <!-- 终点站首班车时间 END --> | |
| 257 | - | |
| 258 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 259 | - <div class="col-md-6"> | |
| 260 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 261 | - <div class="col-md-4"> | |
| 262 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 263 | - <span class="help-block"> 例如 :18:00 </span> | |
| 264 | - </div> | |
| 265 | - </div> | |
| 266 | - <!-- 终点站末班车时间 END --> | |
| 267 | - </div> | |
| 268 | - <!-- 表单分组组件 form-group END --> | |
| 269 | - | |
| 270 | - <!-- 表单分组组件 form-group START --> | |
| 271 | - <div class="form-group"> | |
| 272 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 273 | - <div class="col-md-6"> | |
| 274 | - <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 275 | - <div class="col-md-4"> | |
| 276 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 277 | - <option value="">-- 请选择线路类型 --</option> | |
| 278 | - <option value="0">双向</option> | |
| 279 | - <option value="1">环线</option> | |
| 280 | - </select> | |
| 281 | - </div> | |
| 282 | - </div> | |
| 283 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 284 | - | |
| 285 | - <!--大间隔等级 START --> | |
| 286 | - <div class="col-md-6"> | |
| 287 | - <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 288 | - <div class="col-md-4"> | |
| 289 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 290 | - <option value="">-- 请选择大间隔等级 --</option> | |
| 291 | - <option value="1">一级</option> | |
| 292 | - <option value="2">二级</option> | |
| 293 | - <option value="3">三级</option> | |
| 294 | - <option value="4">四级</option> | |
| 295 | - <option value="5">五级</option> | |
| 296 | - </select> | |
| 297 | - </div> | |
| 298 | - </div> | |
| 299 | - <!-- 大间隔等级END --> | |
| 300 | - </div> | |
| 301 | - <!-- 表单分组组件 form-group START --> | |
| 302 | - | |
| 303 | - <!-- 表单分组组件 form-group START --> | |
| 304 | - <div class="form-group"> | |
| 305 | - <!-- 线路简称 START --> | |
| 306 | - <div class="col-md-6"> | |
| 307 | - <label class="control-label col-md-5"> 线路简称 :</label> | |
| 308 | - <div class="col-md-4"> | |
| 309 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 310 | - </div> | |
| 311 | - </div> | |
| 312 | - <!-- 线路简称 END --> | |
| 313 | - | |
| 314 | - <!-- 英文名称 START --> | |
| 315 | - <div class="col-md-6"> | |
| 316 | - <label class="control-label col-md-5"> 英文名称 : </label> | |
| 317 | - <div class="col-md-4"> | |
| 318 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 319 | - </div> | |
| 320 | - </div> | |
| 321 | - <!-- 英文名称 END --> | |
| 322 | - </div> | |
| 323 | - <!-- 表单分组组件 form-group END --> | |
| 324 | - | |
| 325 | - <!-- 表单分组组件 form-group START --> | |
| 326 | - <div class="form-group"> | |
| 327 | - <!-- 上海市线路编码 START --> | |
| 328 | - <div class="col-md-6"> | |
| 329 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 330 | - <div class="col-md-4"> | |
| 331 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 332 | - </div> | |
| 333 | - </div> | |
| 334 | - <!-- 上海市线路编码 END --> | |
| 335 | - | |
| 336 | - <!--设备线路编码 START --> | |
| 337 | - <div class="col-md-6"> | |
| 338 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 339 | - <div class="col-md-4"> | |
| 340 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 341 | - </div> | |
| 342 | - </div> | |
| 343 | - <!--设备线路编码 END --> | |
| 344 | - </div> | |
| 345 | - <!-- 表单分组组件 form-group END --> | |
| 346 | - | |
| 347 | - <!-- 表单分组组件 form-group START --> | |
| 348 | - <div class="form-group"> | |
| 349 | - <!-- 起始站调度电话 START --> | |
| 350 | - <div class="col-md-6"> | |
| 351 | - <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 352 | - <div class="col-md-4"> | |
| 353 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 354 | - </div> | |
| 355 | - </div> | |
| 356 | - <!-- 起始站调度电话 END --> | |
| 357 | - | |
| 358 | - <!-- 终点站调度电话 START --> | |
| 359 | - <div class="col-md-6"> | |
| 360 | - <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 361 | - <div class="col-md-4"> | |
| 362 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 363 | - </div> | |
| 364 | - </div> | |
| 365 | - <!-- 终点站调度电话 START --> | |
| 366 | - </div> | |
| 367 | - <!-- 表单分组组件 form-group END --> | |
| 368 | - | |
| 369 | - <!-- 表单分组组件 form-group START --> | |
| 370 | - <div class="form-group"> | |
| 371 | - <!-- 车辆总数 START --> | |
| 372 | - <div class="col-md-6"> | |
| 373 | - <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 374 | - <div class="col-md-4"> | |
| 375 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 376 | - </div> | |
| 377 | - </div> | |
| 378 | - <!-- 车辆总数 END --> | |
| 379 | - | |
| 380 | - <!-- 普通车辆数 START --> | |
| 381 | - <div class="col-md-6"> | |
| 382 | - <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 383 | - <div class="col-md-4"> | |
| 384 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 385 | - </div> | |
| 386 | - </div> | |
| 387 | - <!-- 普通车辆数 END --> | |
| 388 | - </div> | |
| 389 | - <!-- 表单分组组件 form-group END --> | |
| 390 | - | |
| 391 | - <!-- 表单分组组件 form-group START --> | |
| 392 | - <div class="form-group"> | |
| 393 | - <!-- 空调车辆数 START --> | |
| 394 | - <div class="col-md-6"> | |
| 395 | - <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 396 | - <div class="col-md-4"> | |
| 397 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 398 | - </div> | |
| 399 | - </div> | |
| 400 | - <!-- 空调车辆数 END --> | |
| 401 | - <!-- 开辟日期 START --> | |
| 402 | - <div class="col-md-6"> | |
| 403 | - <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 404 | - <div class="col-md-4"> | |
| 405 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 406 | - </div> | |
| 407 | - </div> | |
| 408 | - <!-- 开辟日期 END --> | |
| 409 | - </div> | |
| 410 | - <!-- 表单分组组件 form-group END --> | |
| 411 | - <!-- 表单分组组件 form-group START --> | |
| 412 | - <div class="form-group"> | |
| 413 | - <!-- 权证车辆数 START --> | |
| 414 | - <div class="col-md-6"> | |
| 415 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 416 | - <div class="col-md-4"> | |
| 417 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 418 | - </div> | |
| 419 | - </div> | |
| 420 | - <!-- 权证车辆数 END --> | |
| 421 | - </div> | |
| 422 | - <!-- 表单分组组件 form-group END --> | |
| 423 | - <!-- 表单分组组件 form-group START --> | |
| 424 | - <div class="form-group"> | |
| 425 | - <!-- 线路沿革 START --> | |
| 426 | - <div class="col-md-6"> | |
| 427 | - <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 428 | - <div class="col-md-4"> | |
| 429 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 430 | - <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 431 | - </div> | |
| 432 | - </div> | |
| 433 | - <!-- 线路沿革 END --> | |
| 434 | - | |
| 435 | - <!-- 描述/说明 START --> | |
| 436 | - <div class="col-md-6"> | |
| 437 | - <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 438 | - <div class="col-md-4"> | |
| 439 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 440 | - </div> | |
| 441 | - </div> | |
| 442 | - <!-- 描述/说明 END --> | |
| 443 | - </div> | |
| 444 | - <!-- 表单分组组件 form-group END --> | |
| 445 | - </div> | |
| 446 | - | |
| 447 | - <!-- 表单按钮组件 START --> | |
| 448 | - <div class="form-actions"> | |
| 449 | - <div class="row"> | |
| 450 | - <div class="col-md-offset-4 col-md-5"> | |
| 451 | - <a type="button" class="btn default" href="list.html" style="margin-left: 35%;" data-pjax><i class="fa fa-reply"></i> 返回</a> | |
| 452 | - </div> | |
| 453 | - </div> | |
| 454 | - </div> | |
| 455 | - <!-- 表单按钮组件 END --> | |
| 456 | - | |
| 457 | - </form> | |
| 458 | - <!-- END FORM--> | |
| 459 | - | |
| 460 | - </div> | |
| 461 | - <!-- 表单组件 END --> | |
| 462 | - | |
| 21 | + <!-- 信息容器组件标题 START --> | |
| 22 | + <div class="portlet-title"> | |
| 23 | + <div class="caption"> | |
| 24 | + <i class="icon-equalizer font-red-sunglo"></i> | |
| 25 | + <span class="caption-subject font-red-sunglo bold uppercase">线路详情信息</span> | |
| 26 | + </div> | |
| 27 | + </div> | |
| 28 | + <!-- 信息容器组件标题 END --> | |
| 29 | + | |
| 30 | + <!-- 表单容器组件 START --> | |
| 31 | + <div class="portlet-body form" id="lineDetailsForm"> | |
| 32 | + | |
| 33 | + <!-- START FORM --> | |
| 34 | + <form action="/" class="form-horizontal" id="line_details_form"> | |
| 35 | + | |
| 36 | + <!-- 表单内容 --> | |
| 37 | + <div class="form-body"> | |
| 38 | + | |
| 39 | + <!-- 表单分组组件 form-group START --> | |
| 40 | + <div class="form-group"> | |
| 41 | + <!-- 线路编码 (* 必填项) START --> | |
| 42 | + <div class="col-md-6"> | |
| 43 | + <label class="control-label col-md-5"> | |
| 44 | + <span class="required"> * </span>线路编码 : | |
| 45 | + </label> | |
| 46 | + <div class="col-md-4"> | |
| 47 | + <input type="text" class="form-control" name="lineCode" id="lineCodeInput" | |
| 48 | + placeholder="线路编码"> | |
| 49 | + </div> | |
| 50 | + </div> | |
| 51 | + <!-- 线路编码 (* 必填项) END --> | |
| 52 | + | |
| 53 | + <!-- 线路名称 (* 必填项) START --> | |
| 54 | + <div class="col-md-6"> | |
| 55 | + <label class="control-label col-md-5"> | |
| 56 | + <span class="required"> * </span>线路名称 : | |
| 57 | + </label> | |
| 58 | + <div class="col-md-4"> | |
| 59 | + <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称"/> | |
| 60 | + <span class="help-block"> 例如 :浦东88路 </span> | |
| 61 | + </div> | |
| 62 | + </div> | |
| 63 | + <!-- 线路名称 (* 必填项) END --> | |
| 64 | + </div> | |
| 65 | + <!-- 表单分组组件 form-group END --> | |
| 66 | + | |
| 67 | + <!-- 表单分组组件 form-group START --> | |
| 68 | + <div class="form-group"> | |
| 69 | + <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 70 | + <div class="col-md-6"> | |
| 71 | + <label class="control-label col-md-5"> | |
| 72 | + <span class="required"> * </span>所属公司 : | |
| 73 | + </label> | |
| 74 | + <div class="col-md-4"> | |
| 75 | + <select name="company" class="form-control" id="companySelect"></select> | |
| 76 | + </div> | |
| 77 | + </div> | |
| 78 | + <!-- 所属公司 END --> | |
| 79 | + | |
| 80 | + <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 81 | + <div class="col-md-6"> | |
| 82 | + <label class="control-label col-md-5"> | |
| 83 | + <span class="required"> * </span>所属分公司 : | |
| 84 | + </label> | |
| 85 | + <div class="col-md-4"> | |
| 86 | + <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 87 | + </div> | |
| 88 | + </div> | |
| 89 | + <!-- 所属分公司 END --> | |
| 90 | + </div> | |
| 91 | + <!-- 表单分组组件 form-group END --> | |
| 92 | + | |
| 93 | + <!-- 表单分组组件 form-group START --> | |
| 94 | + <div class="form-group"> | |
| 95 | + <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 96 | + <div class="col-md-6"> | |
| 97 | + <label class="control-label col-md-5"> | |
| 98 | + <span class="required"> * </span>线路等级 : | |
| 99 | + </label> | |
| 100 | + <div class="col-md-4"> | |
| 101 | + <select name="level" class="form-control" id="levelSelect"> | |
| 102 | + <option value="">-- 请选择线路等级 --</option> | |
| 103 | + <option value="1">一级线路</option> | |
| 104 | + <option value="2">二级线路</option> | |
| 105 | + <option value="0">未知等级</option> | |
| 106 | + </select> | |
| 107 | + </div> | |
| 108 | + </div> | |
| 109 | + <!-- 线路等级 END --> | |
| 110 | + | |
| 111 | + <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 112 | + <div class="col-md-6"> | |
| 113 | + <label class="control-label col-md-5"> | |
| 114 | + <span class="required"> * </span>线路性质 : | |
| 115 | + </label> | |
| 116 | + <div class="col-md-4"> | |
| 117 | + <select name="nature" class="form-control" id="natureSelect"> | |
| 118 | + <option value="">-- 请选择线路性质 --</option> | |
| 119 | + <option value="lj">路救</option> | |
| 120 | + <option value="bc">备车</option> | |
| 121 | + <option value="dbc">定班车</option> | |
| 122 | + <option value="yxl">夜宵路</option> | |
| 123 | + <option value="cgxl">常规线路</option> | |
| 124 | + <option value="gjxl">过江线路</option> | |
| 125 | + <option value="csbs">穿梭巴士</option> | |
| 126 | + <option value="tyxl">特约线路</option> | |
| 127 | + <option value="cctxl">村村通线路</option> | |
| 128 | + <option value="qt">其他</option> | |
| 129 | + </select> | |
| 130 | + </div> | |
| 131 | + </div> | |
| 132 | + <!-- 线路性质 END --> | |
| 133 | + </div> | |
| 134 | + <!-- 表单分组组件 form-group END --> | |
| 135 | + | |
| 136 | + <!-- 表单分组组件 form-group START --> | |
| 137 | + <div class="form-group"> | |
| 138 | + <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 139 | + <div class="col-md-6"> | |
| 140 | + <label class="control-label col-md-5"> | |
| 141 | + <span class="required"> * </span>是否宵夜 : | |
| 142 | + </label> | |
| 143 | + <div class="col-md-4"> | |
| 144 | + <div class="md-radio-inline"> | |
| 145 | + <div class="md-radio"> | |
| 146 | + <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" | |
| 147 | + data-title="是"> | |
| 148 | + <label for="radio16"> | |
| 149 | + <span></span> | |
| 150 | + <span class="check"></span> | |
| 151 | + <span class="box"></span> 是 | |
| 152 | + </label> | |
| 153 | + </div> | |
| 154 | + <div class="md-radio has-error"> | |
| 155 | + <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" | |
| 156 | + data-title="否" checked="checked"> | |
| 157 | + <label for="radio17" style="color:#FFC0CB"> | |
| 158 | + <span></span> | |
| 159 | + <span class="check"></span> | |
| 160 | + <span class="box"></span> 否 | |
| 161 | + </label> | |
| 162 | + </div> | |
| 163 | + </div> | |
| 164 | + </div> | |
| 165 | + </div> | |
| 166 | + <!-- 是否宵夜 END --> | |
| 167 | + | |
| 168 | + <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 169 | + <div class="col-md-6"> | |
| 170 | + <label class="control-label col-md-5"> | |
| 171 | + <span class="required"> * </span>是否撤销 : | |
| 172 | + </label> | |
| 173 | + <div class="col-md-4"> | |
| 174 | + <div class="md-radio-inline"> | |
| 175 | + <div class="md-radio"> | |
| 176 | + <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" | |
| 177 | + value="1"> | |
| 178 | + <label for="radio14"> | |
| 179 | + <span></span> | |
| 180 | + <span class="check"></span> | |
| 181 | + <span class="box"></span> 是 | |
| 182 | + </label> | |
| 183 | + </div> | |
| 184 | + <div class="md-radio has-error"> | |
| 185 | + <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" | |
| 186 | + value="0" checked="checked"> | |
| 187 | + <label for="radio15" style="color:#FFC0CB"> | |
| 188 | + <span></span> | |
| 189 | + <span class="check"></span> | |
| 190 | + <span class="box"></span> 否 | |
| 191 | + </label> | |
| 192 | + </div> | |
| 193 | + </div> | |
| 194 | + </div> | |
| 195 | + </div> | |
| 196 | + <!-- 是否撤销 START --> | |
| 197 | + </div> | |
| 198 | + <!-- 表单分组组件 form-group END --> | |
| 199 | + | |
| 200 | + <!-- 表单分组组件 form-group START --> | |
| 201 | + <div class="form-group"> | |
| 202 | + <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> | |
| 203 | + <div class="col-md-6"> | |
| 204 | + <label class="control-label col-md-5"><span class="required"> * </span> | |
| 205 | + 起始站名称 : | |
| 206 | + </label> | |
| 207 | + <div class="col-md-4"> | |
| 208 | + <input type="text" class="form-control" name="startStationName" id="startStationNameInput" | |
| 209 | + placeholder="起始站名称"> | |
| 210 | + <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 211 | + </div> | |
| 212 | + </div> | |
| 213 | + <!-- 起始站名称 END --> | |
| 214 | + | |
| 215 | + <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 216 | + <div class="col-md-6"> | |
| 217 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : | |
| 218 | + </label> | |
| 219 | + <div class="col-md-4"> | |
| 220 | + <input type="text" class="form-control" name="endStationName" id="endStationNameInput" | |
| 221 | + placeholder="终点站名称"> | |
| 222 | + <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 223 | + </div> | |
| 224 | + </div> | |
| 225 | + <!-- 终点站名称 END --> | |
| 226 | + </div> | |
| 227 | + <!-- 表单分组组件 form-group END --> | |
| 228 | + | |
| 229 | + <!-- 表单分组组件 form-group START --> | |
| 230 | + <div class="form-group"> | |
| 231 | + <!-- 起始站首班车时间 (* 必填项) START --> | |
| 232 | + <div class="col-md-6"> | |
| 233 | + <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 234 | + <div class="col-md-4"> | |
| 235 | + <input type="text" class="form-control" name="startStationFirstTime" | |
| 236 | + id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 237 | + <span class="help-block"> 例如 :06:00 </span> | |
| 238 | + </div> | |
| 239 | + </div> | |
| 240 | + <!-- 起始站首班车时间 END --> | |
| 241 | + | |
| 242 | + <!-- 起始站末班车时间 (* 必填项) START --> | |
| 243 | + <div class="col-md-6"> | |
| 244 | + <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 245 | + <div class="col-md-4"> | |
| 246 | + <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 247 | + <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" | |
| 248 | + placeholder="起始站末班车时间"> | |
| 249 | + <span class="help-block"> 例如 :17:00 </span> | |
| 250 | + </div> | |
| 251 | + </div> | |
| 252 | + <!-- 起始站末班车时间 END --> | |
| 253 | + </div> | |
| 254 | + <!-- 表单分组组件 form-group END --> | |
| 255 | + | |
| 256 | + <!-- 表单分组组件 form-group START --> | |
| 257 | + <div class="form-group"> | |
| 258 | + <!-- 终点站首班车时间 (* 必填项) START --> | |
| 259 | + <div class="col-md-6"> | |
| 260 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 261 | + <div class="col-md-4"> | |
| 262 | + <input type="text" class="form-control" name="endStationFirstTime" | |
| 263 | + id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 264 | + <span class="help-block"> 例如 :05:00 </span> | |
| 265 | + </div> | |
| 266 | + </div> | |
| 267 | + <!-- 终点站首班车时间 END --> | |
| 268 | + | |
| 269 | + <!-- 终点站末班车时间 (* 必填项) START --> | |
| 270 | + <div class="col-md-6"> | |
| 271 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 272 | + <div class="col-md-4"> | |
| 273 | + <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" | |
| 274 | + placeholder="终点站末班车时间 "> | |
| 275 | + <span class="help-block"> 例如 :18:00 </span> | |
| 276 | + </div> | |
| 277 | + </div> | |
| 278 | + <!-- 终点站末班车时间 END --> | |
| 279 | + </div> | |
| 280 | + <!-- 表单分组组件 form-group END --> | |
| 281 | + | |
| 282 | + <!-- 表单分组组件 form-group START --> | |
| 283 | + <div class="form-group"> | |
| 284 | + <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 285 | + <div class="col-md-6"> | |
| 286 | + <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> | |
| 287 | + <div class="col-md-4"> | |
| 288 | + <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 289 | + <option value="">-- 请选择线路类型 --</option> | |
| 290 | + <option value="0">双向</option> | |
| 291 | + <option value="1">环线</option> | |
| 292 | + </select> | |
| 293 | + </div> | |
| 294 | + </div> | |
| 295 | + <!-- 线路规划类型 (* 必填项) END --> | |
| 296 | + | |
| 297 | + <!--车辆区域 START --> | |
| 298 | + <div class="col-md-6"> | |
| 299 | + <label class="control-label col-md-5"> <span class="required"> * </span>线路区域 : | |
| 300 | + </label> | |
| 301 | + <div class="col-md-4"> | |
| 302 | + <select name="region" class="form-control" id="regionSelect"> | |
| 303 | + <option value="">-- 请选择车辆区域 --</option> | |
| 304 | + <option value="0">区内</option> | |
| 305 | + <option value="1">区外</option> | |
| 306 | + </select> | |
| 307 | + </div> | |
| 308 | + </div> | |
| 309 | + <!--车辆区域END --> | |
| 310 | + | |
| 311 | + </div> | |
| 312 | + <!-- 表单分组组件 form-group START --> | |
| 313 | + | |
| 314 | + <!-- 表单分组组件 form-group START --> | |
| 315 | + <div class="form-group"> | |
| 316 | + <!--大间隔等级 START --> | |
| 317 | + <div class="col-md-6"> | |
| 318 | + <label class="control-label col-md-5"> 大间隔等级 : </label> | |
| 319 | + <div class="col-md-4"> | |
| 320 | + <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 321 | + <option value="">-- 请选择大间隔等级 --</option> | |
| 322 | + <option value="1">一级</option> | |
| 323 | + <option value="2">二级</option> | |
| 324 | + <option value="3">三级</option> | |
| 325 | + <option value="4">四级</option> | |
| 326 | + <option value="5">五级</option> | |
| 327 | + </select> | |
| 328 | + </div> | |
| 329 | + </div> | |
| 330 | + <!-- 大间隔等级END --> | |
| 331 | + <!-- 权证车辆数 START --> | |
| 332 | + <div class="col-md-6"> | |
| 333 | + <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 334 | + <div class="col-md-4"> | |
| 335 | + <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" | |
| 336 | + placeholder="权证车辆数"> | |
| 337 | + </div> | |
| 338 | + </div> | |
| 339 | + <!-- 权证车辆数 END --> | |
| 340 | + </div> | |
| 341 | + | |
| 342 | + <!-- 表单分组组件 form-group START --> | |
| 343 | + <div class="form-group"> | |
| 344 | + <!-- 线路简称 START --> | |
| 345 | + <div class="col-md-6"> | |
| 346 | + <label class="control-label col-md-5"> 线路简称 :</label> | |
| 347 | + <div class="col-md-4"> | |
| 348 | + <input type="text" class="form-control" name="shortName" id="shortNameInput" | |
| 349 | + placeholder="线路简称"> | |
| 350 | + </div> | |
| 351 | + </div> | |
| 352 | + <!-- 线路简称 END --> | |
| 353 | + | |
| 354 | + <!-- 英文名称 START --> | |
| 355 | + <div class="col-md-6"> | |
| 356 | + <label class="control-label col-md-5"> 英文名称 : </label> | |
| 357 | + <div class="col-md-4"> | |
| 358 | + <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 359 | + </div> | |
| 360 | + </div> | |
| 361 | + <!-- 英文名称 END --> | |
| 362 | + </div> | |
| 363 | + <!-- 表单分组组件 form-group END --> | |
| 364 | + | |
| 365 | + <!-- 表单分组组件 form-group START --> | |
| 366 | + <div class="form-group"> | |
| 367 | + <!-- 上海市线路编码 START --> | |
| 368 | + <div class="col-md-6"> | |
| 369 | + <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 370 | + <div class="col-md-4"> | |
| 371 | + <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" | |
| 372 | + placeholder="上海市线路编码"> | |
| 373 | + </div> | |
| 374 | + </div> | |
| 375 | + <!-- 上海市线路编码 END --> | |
| 376 | + | |
| 377 | + <!--设备线路编码 START --> | |
| 378 | + <div class="col-md-6"> | |
| 379 | + <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 380 | + <div class="col-md-4"> | |
| 381 | + <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" | |
| 382 | + placeholder="设备线路编码"> | |
| 383 | + </div> | |
| 384 | + </div> | |
| 385 | + <!--设备线路编码 END --> | |
| 386 | + </div> | |
| 387 | + <!-- 表单分组组件 form-group END --> | |
| 388 | + | |
| 389 | + <!-- 表单分组组件 form-group START --> | |
| 390 | + <div class="form-group"> | |
| 391 | + <!-- 起始站调度电话 START --> | |
| 392 | + <div class="col-md-6"> | |
| 393 | + <label class="control-label col-md-5"> 起始站调度电话: </label> | |
| 394 | + <div class="col-md-4"> | |
| 395 | + <input type="text" class="form-control" name="startPhone" id="startPhoneInput" | |
| 396 | + placeholder="起始站调度电话"> | |
| 397 | + </div> | |
| 398 | + </div> | |
| 399 | + <!-- 起始站调度电话 END --> | |
| 400 | + | |
| 401 | + <!-- 终点站调度电话 START --> | |
| 402 | + <div class="col-md-6"> | |
| 403 | + <label class="control-label col-md-5"> 终点站调度电话: </label> | |
| 404 | + <div class="col-md-4"> | |
| 405 | + <input type="text" class="form-control" name="endPhone" id="startPhoneInput" | |
| 406 | + placeholder="终点站调度电话"> | |
| 407 | + </div> | |
| 408 | + </div> | |
| 409 | + <!-- 终点站调度电话 START --> | |
| 410 | + </div> | |
| 411 | + <!-- 表单分组组件 form-group END --> | |
| 412 | + | |
| 413 | + <!-- 表单分组组件 form-group START --> | |
| 414 | + <div class="form-group"> | |
| 415 | + <!-- 车辆总数 START --> | |
| 416 | + <div class="col-md-6"> | |
| 417 | + <label class="control-label col-md-5"> 车辆总数 : </label> | |
| 418 | + <div class="col-md-4"> | |
| 419 | + <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" | |
| 420 | + placeholder="车辆总数"> | |
| 421 | + </div> | |
| 422 | + </div> | |
| 423 | + <!-- 车辆总数 END --> | |
| 424 | + | |
| 425 | + <!-- 普通车辆数 START --> | |
| 426 | + <div class="col-md-6"> | |
| 427 | + <label class="control-label col-md-5"> 普通车辆数 : </label> | |
| 428 | + <div class="col-md-4"> | |
| 429 | + <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" | |
| 430 | + placeholder="普通车辆数"> | |
| 431 | + </div> | |
| 432 | + </div> | |
| 433 | + <!-- 普通车辆数 END --> | |
| 434 | + </div> | |
| 435 | + <!-- 表单分组组件 form-group END --> | |
| 436 | + | |
| 437 | + <!-- 表单分组组件 form-group START --> | |
| 438 | + <div class="form-group"> | |
| 439 | + <!-- 空调车辆数 START --> | |
| 440 | + <div class="col-md-6"> | |
| 441 | + <label class="control-label col-md-5"> 空调车辆数 : </label> | |
| 442 | + <div class="col-md-4"> | |
| 443 | + <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" | |
| 444 | + placeholder="空调车辆数"> | |
| 445 | + </div> | |
| 446 | + </div> | |
| 447 | + <!-- 空调车辆数 END --> | |
| 448 | + <!-- 开辟日期 START --> | |
| 449 | + <div class="col-md-6"> | |
| 450 | + <label class="control-label col-md-5"> 开辟日期 : </label> | |
| 451 | + <div class="col-md-4"> | |
| 452 | + <input type="text" class="form-control" name="openDate" id="openDateInput" | |
| 453 | + placeholder="开辟日期"> | |
| 454 | + </div> | |
| 455 | + </div> | |
| 456 | + <!-- 开辟日期 END --> | |
| 457 | + </div> | |
| 458 | + <!-- 表单分组组件 form-group END --> | |
| 459 | + <!-- 表单分组组件 form-group START --> | |
| 460 | + <div class="form-group"> | |
| 461 | + <!-- 线路沿革 START --> | |
| 462 | + <div class="col-md-6"> | |
| 463 | + <label class="control-label col-md-5"> 线路沿革 : </label> | |
| 464 | + <div class="col-md-4"> | |
| 465 | + <textarea class="form-control" rows="3" name="history" id="historyTextarea" | |
| 466 | + placeholder="线路沿革"></textarea> | |
| 467 | + <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> | |
| 468 | + </div> | |
| 469 | + </div> | |
| 470 | + <!-- 线路沿革 END --> | |
| 471 | + | |
| 472 | + <!-- 描述/说明 START --> | |
| 473 | + <div class="col-md-6"> | |
| 474 | + <label class="control-label col-md-5"> 描述/说明 : </label> | |
| 475 | + <div class="col-md-4"> | |
| 476 | + <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" | |
| 477 | + placeholder="描述/说明"></textarea> | |
| 478 | + </div> | |
| 479 | + </div> | |
| 480 | + <!-- 描述/说明 END --> | |
| 481 | + </div> | |
| 482 | + <!-- 表单分组组件 form-group END --> | |
| 483 | + </div> | |
| 484 | + | |
| 485 | + <!-- 表单按钮组件 START --> | |
| 486 | + <div class="form-actions"> | |
| 487 | + <div class="row"> | |
| 488 | + <div class="col-md-offset-4 col-md-5"> | |
| 489 | + <a type="button" class="btn default" href="list.html" style="margin-left: 35%;" data-pjax><i | |
| 490 | + class="fa fa-reply"></i> 返回</a> | |
| 491 | + </div> | |
| 492 | + </div> | |
| 493 | + </div> | |
| 494 | + <!-- 表单按钮组件 END --> | |
| 495 | + | |
| 496 | + </form> | |
| 497 | + <!-- END FORM--> | |
| 498 | + | |
| 499 | + </div> | |
| 500 | + <!-- 表单组件 END --> | |
| 501 | + | |
| 463 | 502 | </div> |
| 464 | 503 | <!-- 信息容器组件 END --> |
| 465 | 504 | ... | ... |
src/main/resources/static/pages/base/line/edit.html
| ... | ... | @@ -21,111 +21,114 @@ |
| 21 | 21 | <!-- 信息容器组件标题 START --> |
| 22 | 22 | <div class="portlet-title"> |
| 23 | 23 | <div class="caption"> |
| 24 | - <i class="icon-equalizer font-red-sunglo"></i> | |
| 24 | + <i class="icon-equalizer font-red-sunglo"></i> | |
| 25 | 25 | <span class="caption-subject font-red-sunglo bold uppercase">修改线路信息</span> |
| 26 | 26 | </div> |
| 27 | 27 | </div> |
| 28 | 28 | <!-- 信息容器组件标题 END --> |
| 29 | - | |
| 29 | + | |
| 30 | 30 | <!-- 表单容器组件 START --> |
| 31 | 31 | <div class="portlet-body form" id="lineEditForm"> |
| 32 | - | |
| 32 | + | |
| 33 | 33 | <!-- START FORM --> |
| 34 | 34 | <form action="/" class="form-horizontal" id="line_edit_form" > |
| 35 | - | |
| 35 | + | |
| 36 | 36 | <!-- 错误提示信息组件 START --> |
| 37 | 37 | <div class="alert alert-danger display-hide"> |
| 38 | 38 | <button class="close" data-close="alert"></button> |
| 39 | 39 | 您的输入有误,请检查下面的输入项 |
| 40 | 40 | </div> |
| 41 | 41 | <!-- 错误提示信息组件 END --> |
| 42 | - | |
| 42 | + | |
| 43 | 43 | <!-- 表单内容 START --> |
| 44 | + | |
| 45 | + | |
| 46 | + <!-- 表单内容 --> | |
| 44 | 47 | <div class="form-body"> |
| 45 | - <input type="hidden" name="id" id="lineId"> | |
| 46 | - | |
| 48 | + | |
| 47 | 49 | <!-- 表单分组组件 form-group START --> |
| 48 | 50 | <div class="form-group"> |
| 51 | + <input type="hidden" name="id" id="lineId"> | |
| 49 | 52 | <!-- in_use字段 START --> |
| 50 | - <input type="hidden" name="inUse" id="inUseInput" placeholder="隐藏字段" readonly="readonly"> | |
| 51 | - <!-- in_use字段 END --> | |
| 52 | - | |
| 53 | + <input type="hidden" name="inUse" id="inUseInput" placeholder="隐藏字段" readonly="readonly"> | |
| 54 | + <!-- in_use字段 END --> | |
| 53 | 55 | <!-- 线路编码 (* 必填项) START --> |
| 54 | 56 | <div class="col-md-6"> |
| 55 | 57 | <label class="control-label col-md-5"> |
| 56 | - <span class="required"> * </span>线路编码 : | |
| 57 | - </label> | |
| 58 | - <div class="col-md-4"> | |
| 59 | - <input type="text" class="form-control" name="lineCode" id="lineCodeInput" placeholder="线路编码" readonly="readonly"> | |
| 60 | - </div> | |
| 61 | - </div> | |
| 62 | - <!-- 线路编码 (* 必填项) END --> | |
| 63 | - | |
| 64 | - <!-- 线路名称 (* 必填项) START --> | |
| 58 | + <span class="required"> * </span>线路编码 : | |
| 59 | + </label> | |
| 60 | + <div class="col-md-4"> | |
| 61 | + <input type="text" class="form-control" name="lineCode" id="lineCodeInput" | |
| 62 | + placeholder="线路编码"> | |
| 63 | + </div> | |
| 64 | + </div> | |
| 65 | + <!-- 线路编码 (* 必填项) END --> | |
| 66 | + | |
| 67 | + <!-- 线路名称 (* 必填项) START --> | |
| 65 | 68 | <div class="col-md-6"> |
| 66 | 69 | <label class="control-label col-md-5"> |
| 67 | - <span class="required"> * </span>线路名称 : | |
| 68 | - </label> | |
| 69 | - <div class="col-md-4"> | |
| 70 | - <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称" /> | |
| 71 | - <span class="help-block"> 例如 :浦东88路 </span> | |
| 72 | - </div> | |
| 73 | - </div> | |
| 70 | + <span class="required"> * </span>线路名称 : | |
| 71 | + </label> | |
| 72 | + <div class="col-md-4"> | |
| 73 | + <input type="text" class="form-control" name="name" id="nameInput" placeholder="线路名称"/> | |
| 74 | + <span class="help-block"> 例如 :浦东88路 </span> | |
| 75 | + </div> | |
| 76 | + </div> | |
| 74 | 77 | <!-- 线路名称 (* 必填项) END --> |
| 75 | - </div> | |
| 76 | - <!-- 表单分组组件 form-group END --> | |
| 77 | - | |
| 78 | - <!-- 表单分组组件 form-group START --> | |
| 79 | - <div class="form-group"> | |
| 80 | - <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 78 | + </div> | |
| 79 | + <!-- 表单分组组件 form-group END --> | |
| 80 | + | |
| 81 | + <!-- 表单分组组件 form-group START --> | |
| 82 | + <div class="form-group"> | |
| 83 | + <!-- 所属公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 81 | 84 | <div class="col-md-6"> |
| 82 | - <label class="control-label col-md-5"> | |
| 85 | + <label class="control-label col-md-5"> | |
| 83 | 86 | <span class="required"> * </span>所属公司 : |
| 84 | 87 | </label> |
| 85 | - <div class="col-md-4"> | |
| 86 | - <select name="company" class="form-control" id="companySelect"></select> | |
| 87 | - </div> | |
| 88 | - </div> | |
| 89 | - <!-- 所属公司 END --> | |
| 90 | - | |
| 91 | - <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 88 | + <div class="col-md-4"> | |
| 89 | + <select name="company" class="form-control" id="companySelect"></select> | |
| 90 | + </div> | |
| 91 | + </div> | |
| 92 | + <!-- 所属公司 END --> | |
| 93 | + | |
| 94 | + <!-- 所属分公司 START 在片段线路添加JS模块里初始化select(options值查询的公司表) --> | |
| 92 | 95 | <div class="col-md-6"> |
| 93 | - <label class="control-label col-md-5"> | |
| 96 | + <label class="control-label col-md-5"> | |
| 94 | 97 | <span class="required"> * </span>所属分公司 : |
| 95 | 98 | </label> |
| 96 | - <div class="col-md-4"> | |
| 97 | - <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 98 | - </div> | |
| 99 | - </div> | |
| 100 | - <!-- 所属分公司 END --> | |
| 101 | - </div> | |
| 102 | - <!-- 表单分组组件 form-group END --> | |
| 103 | - | |
| 104 | - <!-- 表单分组组件 form-group START --> | |
| 105 | - <div class="form-group"> | |
| 106 | - <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 99 | + <div class="col-md-4"> | |
| 100 | + <select name="brancheCompany" class="form-control" id="brancheCompanySelect"></select> | |
| 101 | + </div> | |
| 102 | + </div> | |
| 103 | + <!-- 所属分公司 END --> | |
| 104 | + </div> | |
| 105 | + <!-- 表单分组组件 form-group END --> | |
| 106 | + | |
| 107 | + <!-- 表单分组组件 form-group START --> | |
| 108 | + <div class="form-group"> | |
| 109 | + <!-- 线路等级 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 107 | 110 | <div class="col-md-6"> |
| 108 | - <label class="control-label col-md-5"> | |
| 111 | + <label class="control-label col-md-5"> | |
| 109 | 112 | <span class="required"> * </span>线路等级 : |
| 110 | 113 | </label> |
| 111 | - <div class="col-md-4"> | |
| 112 | - <select name="level" class="form-control" id="levelSelect"> | |
| 114 | + <div class="col-md-4"> | |
| 115 | + <select name="level" class="form-control" id="levelSelect"> | |
| 113 | 116 | <option value="">-- 请选择线路等级 --</option> |
| 114 | 117 | <option value="1">一级线路</option> |
| 115 | 118 | <option value="2">二级线路</option> |
| 116 | 119 | <option value="0">未知等级</option> |
| 117 | 120 | </select> |
| 118 | 121 | </div> |
| 119 | - </div> | |
| 120 | - <!-- 线路等级 END --> | |
| 121 | - | |
| 122 | + </div> | |
| 123 | + <!-- 线路等级 END --> | |
| 124 | + | |
| 122 | 125 | <!-- 线路性质 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> |
| 123 | 126 | <div class="col-md-6"> |
| 124 | - <label class="control-label col-md-5"> | |
| 127 | + <label class="control-label col-md-5"> | |
| 125 | 128 | <span class="required"> * </span>线路性质 : |
| 126 | 129 | </label> |
| 127 | - <div class="col-md-4"> | |
| 128 | - <select name="nature" class="form-control" id="natureSelect"> | |
| 130 | + <div class="col-md-4"> | |
| 131 | + <select name="nature" class="form-control" id="natureSelect"> | |
| 129 | 132 | <option value="">-- 请选择线路性质 --</option> |
| 130 | 133 | <option value="lj">路救</option> |
| 131 | 134 | <option value="bc">备车</option> |
| ... | ... | @@ -138,167 +141,197 @@ |
| 138 | 141 | <option value="cctxl">村村通线路</option> |
| 139 | 142 | <option value="qt">其他</option> |
| 140 | 143 | </select> |
| 141 | - </div> | |
| 142 | - </div> | |
| 143 | - <!-- 线路性质 END --> | |
| 144 | - </div> | |
| 145 | - <!-- 表单分组组件 form-group END --> | |
| 146 | - | |
| 147 | - <!-- 表单分组组件 form-group START --> | |
| 148 | - <div class="form-group"> | |
| 149 | - <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 144 | + </div> | |
| 145 | + </div> | |
| 146 | + <!-- 线路性质 END --> | |
| 147 | + </div> | |
| 148 | + <!-- 表单分组组件 form-group END --> | |
| 149 | + | |
| 150 | + <!-- 表单分组组件 form-group START --> | |
| 151 | + <div class="form-group"> | |
| 152 | + <!-- 是否宵夜 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 150 | 153 | <div class="col-md-6"> |
| 151 | 154 | <label class="control-label col-md-5"> |
| 152 | 155 | <span class="required"> * </span>是否宵夜 : |
| 153 | 156 | </label> |
| 154 | - <div class="col-md-4"> | |
| 155 | - <div class="md-radio-inline"> | |
| 156 | - <div class="md-radio"> | |
| 157 | - <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" data-title="是" > | |
| 157 | + <div class="col-md-4"> | |
| 158 | + <div class="md-radio-inline"> | |
| 159 | + <div class="md-radio"> | |
| 160 | + <input type="radio" id="radio16" name="supperLine" class="md-radiobtn" value="1" | |
| 161 | + data-title="是"> | |
| 158 | 162 | <label for="radio16"> |
| 159 | 163 | <span></span> |
| 160 | 164 | <span class="check"></span> |
| 161 | - <span class="box"></span> 是 | |
| 165 | + <span class="box"></span> 是 | |
| 166 | + </label> | |
| 167 | + </div> | |
| 168 | + <div class="md-radio has-error"> | |
| 169 | + <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" | |
| 170 | + data-title="否" checked="checked"> | |
| 171 | + <label for="radio17" style="color:#FFC0CB"> | |
| 172 | + <span></span> | |
| 173 | + <span class="check"></span> | |
| 174 | + <span class="box"></span> 否 | |
| 162 | 175 | </label> |
| 163 | - </div> | |
| 164 | - <div class="md-radio has-error"> | |
| 165 | - <input type="radio" id="radio17" name="supperLine" class="md-radiobtn" value="0" data-title="否" checked="checked"> | |
| 166 | - <label for="radio17" style="color:#FFC0CB"> | |
| 167 | - <span></span> | |
| 168 | - <span class="check"></span> | |
| 169 | - <span class="box"></span> 否 | |
| 170 | - </label> | |
| 171 | - </div> | |
| 172 | - </div> | |
| 173 | - </div> | |
| 174 | - </div> | |
| 175 | - <!-- 是否宵夜 END --> | |
| 176 | - | |
| 177 | - <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 176 | + </div> | |
| 177 | + </div> | |
| 178 | + </div> | |
| 179 | + </div> | |
| 180 | + <!-- 是否宵夜 END --> | |
| 181 | + | |
| 182 | + <!-- 是否撤销 START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 178 | 183 | <div class="col-md-6"> |
| 179 | 184 | <label class="control-label col-md-5"> |
| 180 | 185 | <span class="required"> * </span>是否撤销 : |
| 181 | 186 | </label> |
| 182 | - <div class="col-md-4"> | |
| 183 | - <div class="md-radio-inline"> | |
| 184 | - <div class="md-radio"> | |
| 185 | - <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" value="1" > | |
| 187 | + <div class="col-md-4"> | |
| 188 | + <div class="md-radio-inline"> | |
| 189 | + <div class="md-radio"> | |
| 190 | + <input type="radio" id="radio14" name="destroy" data-title="是" class="md-radiobtn" | |
| 191 | + value="1"> | |
| 186 | 192 | <label for="radio14"> |
| 187 | 193 | <span></span> |
| 188 | 194 | <span class="check"></span> |
| 189 | - <span class="box"></span> 是 | |
| 195 | + <span class="box"></span> 是 | |
| 190 | 196 | </label> |
| 191 | - </div> | |
| 192 | - <div class="md-radio has-error"> | |
| 193 | - <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" value="0" checked="checked"> | |
| 194 | - <label for="radio15" style="color:#FFC0CB"> | |
| 195 | - <span></span> | |
| 196 | - <span class="check"></span> | |
| 197 | - <span class="box"></span> 否 | |
| 198 | - </label> | |
| 199 | - </div> | |
| 200 | - </div> | |
| 201 | - </div> | |
| 202 | - </div> | |
| 203 | - <!-- 是否撤销 START --> | |
| 204 | - </div> | |
| 205 | - <!-- 表单分组组件 form-group END --> | |
| 206 | - | |
| 207 | - <!-- 表单分组组件 form-group START --> | |
| 208 | - <div class="form-group"> | |
| 197 | + </div> | |
| 198 | + <div class="md-radio has-error"> | |
| 199 | + <input type="radio" id="radio15" name="destroy" class="md-radiobtn" data-title="否" | |
| 200 | + value="0" checked="checked"> | |
| 201 | + <label for="radio15" style="color:#FFC0CB"> | |
| 202 | + <span></span> | |
| 203 | + <span class="check"></span> | |
| 204 | + <span class="box"></span> 否 | |
| 205 | + </label> | |
| 206 | + </div> | |
| 207 | + </div> | |
| 208 | + </div> | |
| 209 | + </div> | |
| 210 | + <!-- 是否撤销 START --> | |
| 211 | + </div> | |
| 212 | + <!-- 表单分组组件 form-group END --> | |
| 213 | + | |
| 214 | + <!-- 表单分组组件 form-group START --> | |
| 215 | + <div class="form-group"> | |
| 209 | 216 | <!-- 起始站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的起点站。默认使用该字段填写值) --> |
| 210 | 217 | <div class="col-md-6"> |
| 211 | - <label class="control-label col-md-5"><span class="required"> * </span> | |
| 218 | + <label class="control-label col-md-5"><span class="required"> * </span> | |
| 212 | 219 | 起始站名称 : |
| 213 | 220 | </label> |
| 214 | - <div class="col-md-4"> | |
| 215 | - <input type="text" class="form-control" name="startStationName" id="startStationNameInput" placeholder="起始站名称"> | |
| 216 | - <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 217 | - </div> | |
| 218 | - </div> | |
| 219 | - <!-- 起始站名称 END --> | |
| 220 | - | |
| 221 | - <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 221 | + <div class="col-md-4"> | |
| 222 | + <input type="text" class="form-control" name="startStationName" id="startStationNameInput" | |
| 223 | + placeholder="起始站名称"> | |
| 224 | + <span class="help-block"> 说明 :上行起始站名称 </span> | |
| 225 | + </div> | |
| 226 | + </div> | |
| 227 | + <!-- 起始站名称 END --> | |
| 228 | + | |
| 229 | + <!-- 终点站名称 START (该字段值会在规划线路站点操作时会去验证是否有值。如果为空,则用线路规划站点的终点站。默认使用该字段填写值) --> | |
| 222 | 230 | <div class="col-md-6"> |
| 223 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : </label> | |
| 224 | - <div class="col-md-4"> | |
| 225 | - <input type="text" class="form-control" name="endStationName" id="endStationNameInput" placeholder="终点站名称"> | |
| 226 | - <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 227 | - </div> | |
| 228 | - </div> | |
| 229 | - <!-- 终点站名称 END --> | |
| 230 | - </div> | |
| 231 | - <!-- 表单分组组件 form-group END --> | |
| 232 | - | |
| 233 | - <!-- 表单分组组件 form-group START --> | |
| 234 | - <div class="form-group"> | |
| 231 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站名称 : | |
| 232 | + </label> | |
| 233 | + <div class="col-md-4"> | |
| 234 | + <input type="text" class="form-control" name="endStationName" id="endStationNameInput" | |
| 235 | + placeholder="终点站名称"> | |
| 236 | + <span class="help-block"> 说明 :上行终点站名称 </span> | |
| 237 | + </div> | |
| 238 | + </div> | |
| 239 | + <!-- 终点站名称 END --> | |
| 240 | + </div> | |
| 241 | + <!-- 表单分组组件 form-group END --> | |
| 242 | + | |
| 243 | + <!-- 表单分组组件 form-group START --> | |
| 244 | + <div class="form-group"> | |
| 235 | 245 | <!-- 起始站首班车时间 (* 必填项) START --> |
| 236 | 246 | <div class="col-md-6"> |
| 237 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 238 | - <div class="col-md-4"> | |
| 239 | - <input type="text" class="form-control" name="startStationFirstTime" id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 240 | - <span class="help-block"> 例如 :06:00 </span> | |
| 241 | - </div> | |
| 242 | - </div> | |
| 243 | - <!-- 起始站首班车时间 END --> | |
| 244 | - | |
| 245 | - <!-- 起始站末班车时间 (* 必填项) START --> | |
| 247 | + <label class="control-label col-md-5"><span class="required"> * </span> 起始站首班时间: </label> | |
| 248 | + <div class="col-md-4"> | |
| 249 | + <input type="text" class="form-control" name="startStationFirstTime" | |
| 250 | + id="startStationFirstTimeInput" placeholder="起始站首班车时间"> | |
| 251 | + <span class="help-block"> 例如 :06:00 </span> | |
| 252 | + </div> | |
| 253 | + </div> | |
| 254 | + <!-- 起始站首班车时间 END --> | |
| 255 | + | |
| 256 | + <!-- 起始站末班车时间 (* 必填项) START --> | |
| 246 | 257 | <div class="col-md-6"> |
| 247 | - <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 248 | - <div class="col-md-4"> | |
| 249 | - <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 250 | - <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" placeholder="起始站末班车时间"> | |
| 251 | - <span class="help-block"> 例如 :17:00 </span> | |
| 252 | - </div> | |
| 253 | - </div> | |
| 254 | - <!-- 起始站末班车时间 END --> | |
| 255 | - </div> | |
| 256 | - <!-- 表单分组组件 form-group END --> | |
| 257 | - | |
| 258 | - <!-- 表单分组组件 form-group START --> | |
| 259 | - <div class="form-group"> | |
| 260 | - <!-- 终点站首班车时间 (* 必填项) START --> | |
| 258 | + <label class="control-label col-md-5"><span class="required"> * </span> 起始站末班时间: </label> | |
| 259 | + <div class="col-md-4"> | |
| 260 | + <!-- <input type="text" class="form-control" name="StartStationEndTime" id="StartStationEndTimeInput" placeholder="起始站末班车时间 "> --> | |
| 261 | + <input type="text" class="form-control" name="startStationEndTime" id="endTimeInput" | |
| 262 | + placeholder="起始站末班车时间"> | |
| 263 | + <span class="help-block"> 例如 :17:00 </span> | |
| 264 | + </div> | |
| 265 | + </div> | |
| 266 | + <!-- 起始站末班车时间 END --> | |
| 267 | + </div> | |
| 268 | + <!-- 表单分组组件 form-group END --> | |
| 269 | + | |
| 270 | + <!-- 表单分组组件 form-group START --> | |
| 271 | + <div class="form-group"> | |
| 272 | + <!-- 终点站首班车时间 (* 必填项) START --> | |
| 261 | 273 | <div class="col-md-6"> |
| 262 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 263 | - <div class="col-md-4"> | |
| 264 | - <input type="text" class="form-control" name="endStationFirstTime" id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 265 | - <span class="help-block"> 例如 :05:00 </span> | |
| 266 | - </div> | |
| 267 | - </div> | |
| 268 | - <!-- 终点站首班车时间 END --> | |
| 269 | - | |
| 270 | - <!-- 终点站末班车时间 (* 必填项) START --> | |
| 274 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站首班时间: </label> | |
| 275 | + <div class="col-md-4"> | |
| 276 | + <input type="text" class="form-control" name="endStationFirstTime" | |
| 277 | + id="endStationFirstTimeInput" placeholder="终点站首班车时间"> | |
| 278 | + <span class="help-block"> 例如 :05:00 </span> | |
| 279 | + </div> | |
| 280 | + </div> | |
| 281 | + <!-- 终点站首班车时间 END --> | |
| 282 | + | |
| 283 | + <!-- 终点站末班车时间 (* 必填项) START --> | |
| 271 | 284 | <div class="col-md-6"> |
| 272 | - <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 273 | - <div class="col-md-4"> | |
| 274 | - <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" placeholder="终点站末班车时间 "> | |
| 275 | - <span class="help-block"> 例如 :18:00 </span> | |
| 276 | - </div> | |
| 277 | - </div> | |
| 278 | - <!-- 终点站末班车时间 END --> | |
| 279 | - </div> | |
| 280 | - <!-- 表单分组组件 form-group END --> | |
| 281 | - | |
| 282 | - <!-- 表单分组组件 form-group START --> | |
| 283 | - <div class="form-group"> | |
| 284 | - <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 285 | + <label class="control-label col-md-5"><span class="required"> * </span> 终点站末班时间: </label> | |
| 286 | + <div class="col-md-4"> | |
| 287 | + <input type="text" class="form-control" name="endStationEndTime" id="endStationEndTimeInput" | |
| 288 | + placeholder="终点站末班车时间 "> | |
| 289 | + <span class="help-block"> 例如 :18:00 </span> | |
| 290 | + </div> | |
| 291 | + </div> | |
| 292 | + <!-- 终点站末班车时间 END --> | |
| 293 | + </div> | |
| 294 | + <!-- 表单分组组件 form-group END --> | |
| 295 | + | |
| 296 | + <!-- 表单分组组件 form-group START --> | |
| 297 | + <div class="form-group"> | |
| 298 | + <!-- 线路规划类型 (* 必填项) START (因为options值基本固定,所以在页面固定。【以后可以根具需求修改成使用字典表实现】) --> | |
| 285 | 299 | <div class="col-md-6"> |
| 286 | 300 | <label class="control-label col-md-5"><span class="required"> * </span> 线路规划类型 :</label> |
| 287 | - <div class="col-md-4"> | |
| 288 | - <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 301 | + <div class="col-md-4"> | |
| 302 | + <select name="linePlayType" class="form-control" id="linePlayTypeSelect"> | |
| 289 | 303 | <option value="">-- 请选择线路类型 --</option> |
| 290 | 304 | <option value="0">双向</option> |
| 291 | 305 | <option value="1">环线</option> |
| 292 | 306 | </select> |
| 293 | - </div> | |
| 294 | - </div> | |
| 295 | - <!-- 线路规划类型 (* 必填项) END --> | |
| 296 | - | |
| 297 | - <!--大间隔等级 START --> | |
| 307 | + </div> | |
| 308 | + </div> | |
| 309 | + <!-- 线路规划类型 (* 必填项) END --> | |
| 310 | + | |
| 311 | + <!--车辆区域 START --> | |
| 312 | + <div class="col-md-6"> | |
| 313 | + <label class="control-label col-md-5"> <span class="required"> * </span>线路区域 : | |
| 314 | + </label> | |
| 315 | + <div class="col-md-4"> | |
| 316 | + <select name="region" class="form-control" id="regionSelect"> | |
| 317 | + <option value="">-- 请选择车辆区域 --</option> | |
| 318 | + <option value="0">区内</option> | |
| 319 | + <option value="1">区外</option> | |
| 320 | + </select> | |
| 321 | + </div> | |
| 322 | + </div> | |
| 323 | + <!--车辆区域END --> | |
| 324 | + | |
| 325 | + </div> | |
| 326 | + <!-- 表单分组组件 form-group START --> | |
| 327 | + | |
| 328 | + <!-- 表单分组组件 form-group START --> | |
| 329 | + <div class="form-group"> | |
| 330 | + <!--大间隔等级 START --> | |
| 298 | 331 | <div class="col-md-6"> |
| 299 | 332 | <label class="control-label col-md-5"> 大间隔等级 : </label> |
| 300 | - <div class="col-md-4"> | |
| 301 | - <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 333 | + <div class="col-md-4"> | |
| 334 | + <select name="spacGrade" class="form-control" id="spacGradeSelect"> | |
| 302 | 335 | <option value="">-- 请选择大间隔等级 --</option> |
| 303 | 336 | <option value="1">一级</option> |
| 304 | 337 | <option value="2">二级</option> |
| ... | ... | @@ -306,157 +339,163 @@ |
| 306 | 339 | <option value="4">四级</option> |
| 307 | 340 | <option value="5">五级</option> |
| 308 | 341 | </select> |
| 309 | - </div> | |
| 310 | - </div> | |
| 311 | - <!-- 大间隔等级END --> | |
| 312 | - </div> | |
| 313 | - <!-- 表单分组组件 form-group START --> | |
| 314 | - | |
| 315 | - <!-- 表单分组组件 form-group START --> | |
| 316 | - <div class="form-group"> | |
| 317 | - <!-- 线路简称 START --> | |
| 342 | + </div> | |
| 343 | + </div> | |
| 344 | + <!-- 大间隔等级END --> | |
| 345 | + <!-- 权证车辆数 START --> | |
| 346 | + <div class="col-md-6"> | |
| 347 | + <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 348 | + <div class="col-md-4"> | |
| 349 | + <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" | |
| 350 | + placeholder="权证车辆数"> | |
| 351 | + </div> | |
| 352 | + </div> | |
| 353 | + <!-- 权证车辆数 END --> | |
| 354 | + </div> | |
| 355 | + | |
| 356 | + <!-- 表单分组组件 form-group START --> | |
| 357 | + <div class="form-group"> | |
| 358 | + <!-- 线路简称 START --> | |
| 318 | 359 | <div class="col-md-6"> |
| 319 | 360 | <label class="control-label col-md-5"> 线路简称 :</label> |
| 320 | - <div class="col-md-4"> | |
| 321 | - <input type="text" class="form-control" name="shortName" id="shortNameInput" placeholder="线路简称"> | |
| 322 | - </div> | |
| 323 | - </div> | |
| 361 | + <div class="col-md-4"> | |
| 362 | + <input type="text" class="form-control" name="shortName" id="shortNameInput" | |
| 363 | + placeholder="线路简称"> | |
| 364 | + </div> | |
| 365 | + </div> | |
| 324 | 366 | <!-- 线路简称 END --> |
| 325 | - | |
| 367 | + | |
| 326 | 368 | <!-- 英文名称 START --> |
| 327 | 369 | <div class="col-md-6"> |
| 328 | 370 | <label class="control-label col-md-5"> 英文名称 : </label> |
| 329 | - <div class="col-md-4"> | |
| 330 | - <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 331 | - </div> | |
| 332 | - </div> | |
| 333 | - <!-- 英文名称 END --> | |
| 334 | - </div> | |
| 335 | - <!-- 表单分组组件 form-group END --> | |
| 336 | - | |
| 337 | - <!-- 表单分组组件 form-group START --> | |
| 338 | - <div class="form-group"> | |
| 339 | - <!-- 上海市线路编码 START --> | |
| 340 | - <div class="col-md-6"> | |
| 341 | - <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 342 | - <div class="col-md-4"> | |
| 343 | - <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" placeholder="上海市线路编码"> | |
| 344 | - </div> | |
| 345 | - </div> | |
| 346 | - <!-- 上海市线路编码 END --> | |
| 347 | - | |
| 348 | - <!--设备线路编码 START --> | |
| 349 | - <div class="col-md-6"> | |
| 350 | - <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 351 | - <div class="col-md-4"> | |
| 352 | - <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" placeholder="设备线路编码"> | |
| 353 | - </div> | |
| 354 | - </div> | |
| 355 | - <!--设备线路编码 END --> | |
| 356 | - </div> | |
| 357 | - <!-- 表单分组组件 form-group END --> | |
| 358 | - | |
| 359 | - <!-- 表单分组组件 form-group START --> | |
| 360 | - <div class="form-group"> | |
| 371 | + <div class="col-md-4"> | |
| 372 | + <input type="text" class="form-control" name="es" id="esInput" placeholder="英文名称"> | |
| 373 | + </div> | |
| 374 | + </div> | |
| 375 | + <!-- 英文名称 END --> | |
| 376 | + </div> | |
| 377 | + <!-- 表单分组组件 form-group END --> | |
| 378 | + | |
| 379 | + <!-- 表单分组组件 form-group START --> | |
| 380 | + <div class="form-group"> | |
| 381 | + <!-- 上海市线路编码 START --> | |
| 382 | + <div class="col-md-6"> | |
| 383 | + <label class="control-label col-md-5"> 上海市线路编码: </label> | |
| 384 | + <div class="col-md-4"> | |
| 385 | + <input type="text" class="form-control" name="shanghaiLinecode" id="shanghaiLinecodeInput" | |
| 386 | + placeholder="上海市线路编码"> | |
| 387 | + </div> | |
| 388 | + </div> | |
| 389 | + <!-- 上海市线路编码 END --> | |
| 390 | + | |
| 391 | + <!--设备线路编码 START --> | |
| 392 | + <div class="col-md-6"> | |
| 393 | + <label class="control-label col-md-5"> 设备线路编码 : </label> | |
| 394 | + <div class="col-md-4"> | |
| 395 | + <input type="text" class="form-control" name="eqLinecode" id="eqLinecodeInput" | |
| 396 | + placeholder="设备线路编码"> | |
| 397 | + </div> | |
| 398 | + </div> | |
| 399 | + <!--设备线路编码 END --> | |
| 400 | + </div> | |
| 401 | + <!-- 表单分组组件 form-group END --> | |
| 402 | + | |
| 403 | + <!-- 表单分组组件 form-group START --> | |
| 404 | + <div class="form-group"> | |
| 361 | 405 | <!-- 起始站调度电话 START --> |
| 362 | 406 | <div class="col-md-6"> |
| 363 | 407 | <label class="control-label col-md-5"> 起始站调度电话: </label> |
| 364 | - <div class="col-md-4"> | |
| 365 | - <input type="text" class="form-control" name="startPhone" id="startPhoneInput" placeholder="起始站调度电话"> | |
| 366 | - </div> | |
| 367 | - </div> | |
| 368 | - <!-- 起始站调度电话 END --> | |
| 369 | - | |
| 370 | - <!-- 终点站调度电话 START --> | |
| 408 | + <div class="col-md-4"> | |
| 409 | + <input type="text" class="form-control" name="startPhone" id="startPhoneInput" | |
| 410 | + placeholder="起始站调度电话"> | |
| 411 | + </div> | |
| 412 | + </div> | |
| 413 | + <!-- 起始站调度电话 END --> | |
| 414 | + | |
| 415 | + <!-- 终点站调度电话 START --> | |
| 371 | 416 | <div class="col-md-6"> |
| 372 | 417 | <label class="control-label col-md-5"> 终点站调度电话: </label> |
| 373 | - <div class="col-md-4"> | |
| 374 | - <input type="text" class="form-control" name="endPhone" id="startPhoneInput" placeholder="终点站调度电话"> | |
| 375 | - </div> | |
| 376 | - </div> | |
| 377 | - <!-- 终点站调度电话 START --> | |
| 378 | - </div> | |
| 379 | - <!-- 表单分组组件 form-group END --> | |
| 380 | - | |
| 381 | - <!-- 表单分组组件 form-group START --> | |
| 382 | - <div class="form-group"> | |
| 418 | + <div class="col-md-4"> | |
| 419 | + <input type="text" class="form-control" name="endPhone" id="startPhoneInput" | |
| 420 | + placeholder="终点站调度电话"> | |
| 421 | + </div> | |
| 422 | + </div> | |
| 423 | + <!-- 终点站调度电话 START --> | |
| 424 | + </div> | |
| 425 | + <!-- 表单分组组件 form-group END --> | |
| 426 | + | |
| 427 | + <!-- 表单分组组件 form-group START --> | |
| 428 | + <div class="form-group"> | |
| 383 | 429 | <!-- 车辆总数 START --> |
| 384 | 430 | <div class="col-md-6"> |
| 385 | 431 | <label class="control-label col-md-5"> 车辆总数 : </label> |
| 386 | - <div class="col-md-4"> | |
| 387 | - <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" placeholder="车辆总数"> | |
| 388 | - </div> | |
| 389 | - </div> | |
| 390 | - <!-- 车辆总数 END --> | |
| 391 | - | |
| 392 | - <!-- 普通车辆数 START --> | |
| 432 | + <div class="col-md-4"> | |
| 433 | + <input type="text" class="form-control" name="carSumNumber" id="carSumNumberInput" | |
| 434 | + placeholder="车辆总数"> | |
| 435 | + </div> | |
| 436 | + </div> | |
| 437 | + <!-- 车辆总数 END --> | |
| 438 | + | |
| 439 | + <!-- 普通车辆数 START --> | |
| 393 | 440 | <div class="col-md-6"> |
| 394 | 441 | <label class="control-label col-md-5"> 普通车辆数 : </label> |
| 395 | - <div class="col-md-4"> | |
| 396 | - <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" placeholder="普通车辆数"> | |
| 397 | - </div> | |
| 398 | - </div> | |
| 399 | - <!-- 普通车辆数 END --> | |
| 400 | - </div> | |
| 401 | - <!-- 表单分组组件 form-group END --> | |
| 402 | - | |
| 403 | - <!-- 表单分组组件 form-group START --> | |
| 404 | - <div class="form-group"> | |
| 405 | - <!-- 空调车辆数 START --> | |
| 442 | + <div class="col-md-4"> | |
| 443 | + <input type="text" class="form-control" name="ordCarNumber" id="ordCarNumberInput" | |
| 444 | + placeholder="普通车辆数"> | |
| 445 | + </div> | |
| 446 | + </div> | |
| 447 | + <!-- 普通车辆数 END --> | |
| 448 | + </div> | |
| 449 | + <!-- 表单分组组件 form-group END --> | |
| 450 | + | |
| 451 | + <!-- 表单分组组件 form-group START --> | |
| 452 | + <div class="form-group"> | |
| 453 | + <!-- 空调车辆数 START --> | |
| 406 | 454 | <div class="col-md-6"> |
| 407 | 455 | <label class="control-label col-md-5"> 空调车辆数 : </label> |
| 408 | - <div class="col-md-4"> | |
| 409 | - <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" placeholder="空调车辆数"> | |
| 410 | - </div> | |
| 411 | - </div> | |
| 412 | - <!-- 空调车辆数 END --> | |
| 413 | - <!-- 开辟日期 START --> | |
| 456 | + <div class="col-md-4"> | |
| 457 | + <input type="text" class="form-control" name="hvacCarNumber" id="hvacCarNumberInput" | |
| 458 | + placeholder="空调车辆数"> | |
| 459 | + </div> | |
| 460 | + </div> | |
| 461 | + <!-- 空调车辆数 END --> | |
| 462 | + <!-- 开辟日期 START --> | |
| 414 | 463 | <div class="col-md-6"> |
| 415 | 464 | <label class="control-label col-md-5"> 开辟日期 : </label> |
| 416 | - <div class="col-md-4"> | |
| 417 | - <input type="text" class="form-control" name="openDate" id="openDateInput" placeholder="开辟日期"> | |
| 418 | - </div> | |
| 419 | - </div> | |
| 420 | - <!-- 开辟日期 END --> | |
| 421 | - </div> | |
| 422 | - <!-- 表单分组组件 form-group END --> | |
| 423 | - | |
| 424 | - <!-- 表单分组组件 form-group START --> | |
| 425 | - <div class="form-group"> | |
| 426 | - <!-- 权证车辆数 START --> | |
| 427 | - <div class="col-md-6"> | |
| 428 | - <label class="control-label col-md-5"> 权证车辆数 : </label> | |
| 429 | - <div class="col-md-4"> | |
| 430 | - <input type="text" class="form-control" name="warrantCar" id="warrantCarInput" placeholder="权证车辆数"> | |
| 431 | - </div> | |
| 432 | - </div> | |
| 433 | - <!-- 权证车辆数 END --> | |
| 434 | - </div> | |
| 435 | - <!-- 表单分组组件 form-group END --> | |
| 436 | - <!-- 表单分组组件 form-group START --> | |
| 437 | - <div class="form-group"> | |
| 438 | - <!-- 线路沿革 START --> | |
| 465 | + <div class="col-md-4"> | |
| 466 | + <input type="text" class="form-control" name="openDate" id="openDateInput" | |
| 467 | + placeholder="开辟日期"> | |
| 468 | + </div> | |
| 469 | + </div> | |
| 470 | + <!-- 开辟日期 END --> | |
| 471 | + </div> | |
| 472 | + <!-- 表单分组组件 form-group END --> | |
| 473 | + <!-- 表单分组组件 form-group START --> | |
| 474 | + <div class="form-group"> | |
| 475 | + <!-- 线路沿革 START --> | |
| 439 | 476 | <div class="col-md-6"> |
| 440 | 477 | <label class="control-label col-md-5"> 线路沿革 : </label> |
| 441 | - <div class="col-md-4"> | |
| 442 | - <textarea class="form-control" rows="3" name="history" id="historyTextarea" placeholder="线路沿革"></textarea> | |
| 478 | + <div class="col-md-4"> | |
| 479 | + <textarea class="form-control" rows="3" name="history" id="historyTextarea" | |
| 480 | + placeholder="线路沿革"></textarea> | |
| 443 | 481 | <span class="help-block">日期及内容:如2014-1-1,开辟;2014-5-1,延线;</span> |
| 444 | - </div> | |
| 445 | - </div> | |
| 446 | - <!-- 线路沿革 END --> | |
| 447 | - | |
| 482 | + </div> | |
| 483 | + </div> | |
| 484 | + <!-- 线路沿革 END --> | |
| 485 | + | |
| 448 | 486 | <!-- 描述/说明 START --> |
| 449 | 487 | <div class="col-md-6"> |
| 450 | 488 | <label class="control-label col-md-5"> 描述/说明 : </label> |
| 451 | - <div class="col-md-4"> | |
| 452 | - <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" placeholder="描述/说明"></textarea> | |
| 453 | - </div> | |
| 454 | - </div> | |
| 455 | - <!-- 描述/说明 END --> | |
| 456 | - </div> | |
| 457 | - <!-- 表单分组组件 form-group END --> | |
| 489 | + <div class="col-md-4"> | |
| 490 | + <textarea class="form-control" rows="3" name="descriptions" id="descriptionsTextarea" | |
| 491 | + placeholder="描述/说明"></textarea> | |
| 492 | + </div> | |
| 493 | + </div> | |
| 494 | + <!-- 描述/说明 END --> | |
| 495 | + </div> | |
| 496 | + <!-- 表单分组组件 form-group END --> | |
| 458 | 497 | </div> |
| 459 | - | |
| 498 | + | |
| 460 | 499 | <!-- 表单按钮组件 START --> |
| 461 | 500 | <div class="form-actions"> |
| 462 | 501 | <div class="row"> | ... | ... |
src/main/resources/static/pages/base/line/js/line-add-form.js
| ... | ... | @@ -123,7 +123,8 @@ $(function(){ |
| 123 | 123 | 'hvacCarNumber' : {number : true,digits : true,maxlength: 8},// 空调车辆数 必须输入合法的数字(负数,小数)。 必须输入整数。 最大长度. |
| 124 | 124 | 'ordCarNumber' : {number : true,digits : true,maxlength: 8},// 普通车辆数 必须输入合法的数字(负数,小数)。 必须输入整数。最大长度. |
| 125 | 125 | 'history' : {maxlength: 200},// 线路沿革 输入长度最多是 200 的字符串(汉字算一个字符)。 |
| 126 | - 'descriptions' : {maxlength: 200}// 描述/说明 输入长度最多是 200 的字符串(汉字算一个字符)。 | |
| 126 | + 'descriptions' : {maxlength: 200},// 描述/说明 输入长度最多是 200 的字符串(汉字算一个字符)。 | |
| 127 | + 'region' : {required : true}// 线路区域必选 | |
| 127 | 128 | }, |
| 128 | 129 | messages:{ |
| 129 | 130 | 'lineCode':{ | ... | ... |
src/main/resources/static/pages/base/line/js/line-edit-form.js
| ... | ... | @@ -175,7 +175,8 @@ |
| 175 | 175 | 'hvacCarNumber' : {number : true,digits : true,maxlength: 8},// 空调车辆数 必须输入合法的数字(负数,小数)。 必须输入整数。 最大长度. |
| 176 | 176 | 'ordCarNumber' : {number : true,digits : true,maxlength: 8},// 普通车辆数 必须输入合法的数字(负数,小数)。 必须输入整数。最大长度. |
| 177 | 177 | 'history' : {maxlength: 200},// 线路沿革 输入长度最多是 200 的字符串(汉字算一个字符)。 |
| 178 | - 'descriptions' : {maxlength: 200}// 描述/说明 输入长度最多是 200 的字符串(汉字算一个字符)。 | |
| 178 | + 'descriptions' : {maxlength: 200},// 描述/说明 输入长度最多是 200 的字符串(汉字算一个字符)。 | |
| 179 | + 'region' : {required : true}// 线路区域必选 | |
| 179 | 180 | }, |
| 180 | 181 | |
| 181 | 182 | /** | ... | ... |