Commit a78c21b5335aedc56ab5fe7c80afec63abe01c55
1 parent
ca33fc78
1.
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/resources/static/pages/base/stationroute/js/stationroute-ajax-getdata.js
| ... | ... | @@ -98,12 +98,12 @@ var GetAjaxData = function(){ |
| 98 | 98 | }); |
| 99 | 99 | }, |
| 100 | 100 | findUpStationRouteCode : function(lineId,diraction,stationRouteCode,callback) { |
| 101 | - $get('/stationroute/findUpStationRouteCode',{lineId:lineId,direction:diraction,stationRouteCode:stationRouteCode,version:version},function(result) { | |
| 101 | + $get('/stationroute/findUpStationRouteCode',{lineId:lineId,direction:diraction,stationRouteCode:stationRouteCode},function(result) { | |
| 102 | 102 | callback && callback(result); |
| 103 | 103 | }); |
| 104 | 104 | }, |
| 105 | 105 | findUpSectionRouteCode : function(lineId,diraction,sectionRouteCode,callback) { |
| 106 | - $get('/sectionroute/findUpSectionRouteCode',{lineId:lineId,direction:diraction,sectionRouteCode:sectionRouteCode,version:version},function(result) { | |
| 106 | + $get('/sectionroute/findUpSectionRouteCode',{lineId:lineId,direction:diraction,sectionRouteCode:sectionRouteCode},function(result) { | |
| 107 | 107 | callback && callback(result); |
| 108 | 108 | }); |
| 109 | 109 | }, | ... | ... |