From 2508da86bd95ff8044f30c14d509f46c440e7532 Mon Sep 17 00:00:00 2001 From: LiJun <LiJun@192.168.10.18> Date: 星期二, 06 十一月 2018 13:29:22 +0800 Subject: [PATCH] 获取gprs的信号强度 --- gx_tieta/WebRoot/pages/js/common.js | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/gx_tieta/WebRoot/pages/js/common.js b/gx_tieta/WebRoot/pages/js/common.js index ab36427..65f2cf7 100644 --- a/gx_tieta/WebRoot/pages/js/common.js +++ b/gx_tieta/WebRoot/pages/js/common.js @@ -546,4 +546,31 @@ } } return rs; +} + +//缁橤PRS鍙戦�佹寚瀹氱殑鍛戒护锛岃幏鍙朅T杩斿洖鍊� +function searchStationSignal(param,callback){ + $.ajax({ + type:"post", + url: "Bts_gprs_stateAction_action_update", + async:true, + dataType:'json', + data:'json='+JSON.stringify(param), + success: function(data){ + var model = eval('('+data.result+')'); + console.info(model); + if(callback && typeof callback == 'function'){ + callback(model); + } + },error:function(e){ + var model = { + code:0, + data:e, + msg:'閫氫俊澶辫触' + }; + if(callback && typeof callback == 'function'){ + callback(model); + } + } + }); } \ No newline at end of file -- Gitblit v1.9.1