Commit b2e8ea5bb6f0eccaa1865f20933e35ed0fb28e21
1 parent
03dfab90
站点详情 展示 行业编码字段
Showing
2 changed files
with
11 additions
and
4 deletions
src/main/resources/static/pages/base/station/list.html
| @@ -34,14 +34,15 @@ | @@ -34,14 +34,15 @@ | ||
| 34 | <th width="3%">序号</th> | 34 | <th width="3%">序号</th> |
| 35 | <th width="5%">线路编号</th> | 35 | <th width="5%">线路编号</th> |
| 36 | <th width="8%">线路名称</th> | 36 | <th width="8%">线路名称</th> |
| 37 | - <th width="5%">线路方向</th> | 37 | + <th width="4%">线路方向</th> |
| 38 | <th width="8%">站点路由名称</th> | 38 | <th width="8%">站点路由名称</th> |
| 39 | <th width="4%">站点编码</th> | 39 | <th width="4%">站点编码</th> |
| 40 | + <th width="4%">行业编码</th> | ||
| 40 | <th width="4%">站点序号</th> | 41 | <th width="4%">站点序号</th> |
| 41 | <th width="4%">站点类型</th> | 42 | <th width="4%">站点类型</th> |
| 42 | <th width="6%">站点距离(km)</th> | 43 | <th width="6%">站点距离(km)</th> |
| 43 | <th width="6%">站点时长(min)</th> | 44 | <th width="6%">站点时长(min)</th> |
| 44 | - <th width="4%">版本号</th> | 45 | + <th width="3%">版本号</th> |
| 45 | <th width="4%">是否撤销</th> | 46 | <th width="4%">是否撤销</th> |
| 46 | <th width="8%">操作</th> | 47 | <th width="8%">操作</th> |
| 47 | </tr> | 48 | </tr> |
| @@ -68,6 +69,9 @@ | @@ -68,6 +69,9 @@ | ||
| 68 | <input type="text" class="form-control form-filter input-sm" name="stationCode_eq"> | 69 | <input type="text" class="form-control form-filter input-sm" name="stationCode_eq"> |
| 69 | </td> | 70 | </td> |
| 70 | <td> | 71 | <td> |
| 72 | + <input type="text" class="form-control form-filter input-sm" name="industryCode_eq"> | ||
| 73 | + </td> | ||
| 74 | + <td> | ||
| 71 | <input type="text" class="form-control form-filter input-sm" name="stationRouteCode_eq"> | 75 | <input type="text" class="form-control form-filter input-sm" name="stationRouteCode_eq"> |
| 72 | </td> | 76 | </td> |
| 73 | <td> | 77 | <td> |
| @@ -141,6 +145,9 @@ | @@ -141,6 +145,9 @@ | ||
| 141 | {{obj.stationCode}} | 145 | {{obj.stationCode}} |
| 142 | </td> | 146 | </td> |
| 143 | <td> | 147 | <td> |
| 148 | + {{obj.industryCode}} | ||
| 149 | + </td> | ||
| 150 | + <td> | ||
| 144 | {{obj.stationRouteCode}} | 151 | {{obj.stationRouteCode}} |
| 145 | </td> | 152 | </td> |
| 146 | <td> | 153 | <td> |
src/main/resources/static/pages/base/stationroute/js/stationroute-list-map.js
| @@ -225,7 +225,7 @@ window.WorldsBMap = function () { | @@ -225,7 +225,7 @@ window.WorldsBMap = function () { | ||
| 225 | // 信息窗口宽度 | 225 | // 信息窗口宽度 |
| 226 | width: (width < 240 ? 240 : width), | 226 | width: (width < 240 ? 240 : width), |
| 227 | // 信息窗口高度 | 227 | // 信息窗口高度 |
| 228 | - height: shapes=="r" ?330:300, | 228 | + // height: shapes=="r" ?380:350, |
| 229 | // 信息窗位置偏移值。 | 229 | // 信息窗位置偏移值。 |
| 230 | offset: new BMap.Size(10,-20), | 230 | offset: new BMap.Size(10,-20), |
| 231 | //设置不允许信窗发送短息 | 231 | //设置不允许信窗发送短息 |
| @@ -246,7 +246,7 @@ window.WorldsBMap = function () { | @@ -246,7 +246,7 @@ window.WorldsBMap = function () { | ||
| 246 | } | 246 | } |
| 247 | var htm = '<span style="color: #ff8355;font-size: 20px; overflow: hidden; white-space: nowrap; text-overflow:ellipsis;display: -webkit-box; -webkit-box-orient: vertical;">' + objStation.stationRouteName + '</span>' + | 247 | var htm = '<span style="color: #ff8355;font-size: 20px; overflow: hidden; white-space: nowrap; text-overflow:ellipsis;display: -webkit-box; -webkit-box-orient: vertical;">' + objStation.stationRouteName + '</span>' + |
| 248 | '<span class="help-block" >站点编码:' + objStation.stationCode + '</span>' + | 248 | '<span class="help-block" >站点编码:' + objStation.stationCode + '</span>' + |
| 249 | - '<span class="help-block" >行业编号:' + objStation.industryCode + '</span>' + | 249 | + '<span class="help-block" >行业编号:' + (objStation.industryCode == null ? "":objStation.industryCode)+ '</span>' + |
| 250 | '<span class="help-block" >站点序号:' + objStation.stationRouteCode + '</span>' + | 250 | '<span class="help-block" >站点序号:' + objStation.stationRouteCode + '</span>' + |
| 251 | '<span class="help-block" >站点类型:' + markTypeStr + '</span>' + | 251 | '<span class="help-block" >站点类型:' + markTypeStr + '</span>' + |
| 252 | '<span class="help-block" >经度:  ' + BJwpoints[0] + '</span>' + | 252 | '<span class="help-block" >经度:  ' + BJwpoints[0] + '</span>' + |