From ca15e5b9de8200a020bd1e5dd62fff268ef13fed Mon Sep 17 00:00:00 2001 From: LiJun <LiJun@192.168.10.18> Date: 星期二, 06 十一月 2018 13:44:49 +0800 Subject: [PATCH] 修改首页上的图例上的机房停电改成停电机房 --- gx_tieta/WebRoot/pages/js/common.js | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/gx_tieta/WebRoot/pages/js/common.js b/gx_tieta/WebRoot/pages/js/common.js index 928a4ba..65f2cf7 100644 --- a/gx_tieta/WebRoot/pages/js/common.js +++ b/gx_tieta/WebRoot/pages/js/common.js @@ -456,6 +456,7 @@ //CMD涓媠ys gl.namespace('CMD.sys'); + gl.CMD.sys.restart = 0x10; gl.CMD.sys.set = 0x81; gl.CMD.sys.get = 0x80; })(jQuery, window, document, GLOBAL); @@ -527,7 +528,7 @@ str += '&battid='+battid; } if(monnum){ - str += '&monnum'+monnum; + str += '&monnum='+monnum; } //var str = page+'?province='+province+'&city='+city+'&county='+county+'&home='+home; return str; @@ -545,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