| | |
| | |
|
| | | //根据stationid查询基站的信息
|
| | | function findStationInfoByStation(temp){
|
| | | //console.info(temp);
|
| | | console.info(JSON.stringify(temp));
|
| | | $.ajax({
|
| | | type:"post",
|
| | | url: "Battinf_exAction!serchByCondition",
|
| | |
| | | data:"json="+JSON.stringify(temp),
|
| | | success: function(data){
|
| | | var model = eval('('+data.result+')');
|
| | | console.log(model);
|
| | | if(model.code == 1 && model.data.length>0){
|
| | | var station = model.data[0];
|
| | | console.info(station);
|
| | | //console.info(station);
|
| | | $('#station_stationid_ex').text(temp.StationId_ex); //站点id
|
| | | $('#station_stationname').text(station.stationName); //机房名称
|
| | | $('#station_stationid').text(station.stationId); //机房名称
|