From a6b4c1e19b3b3fdcf80d7f69f20fe406205fcf8f Mon Sep 17 00:00:00 2001 From: LiJun <LiJun@192.168.10.20> Date: 星期一, 26 十一月 2018 11:54:39 +0800 Subject: [PATCH] Merge branch 'dev_lxw' of https://whyclj@gitlab.com/whyclxw1/gx_tieta.git into dev_lxw --- gx_tieta/WebRoot/control.jsp | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 85 insertions(+), 0 deletions(-) diff --git a/gx_tieta/WebRoot/control.jsp b/gx_tieta/WebRoot/control.jsp index 796836d..ce75ad6 100644 --- a/gx_tieta/WebRoot/control.jsp +++ b/gx_tieta/WebRoot/control.jsp @@ -264,6 +264,11 @@ <span class="whyc-btn-icon fa fa-signal"></span> <span class="whyc-btn-txt">淇″彿璐ㄩ噺</span> </a> + <br> + <a href="javascript:void(0);" id="threadInfo" class="whyc-btn whyc-btn-disabled" id="specialGraphExport"> + <span class="whyc-btn-icon fa fa-desktop"></span> + <span class="whyc-btn-txt">璁惧杩涚▼</span> + </a> </div> </div> </div> @@ -4969,6 +4974,86 @@ //console.info(rs); return rs; } + + // 璁惧杩涚▼鏄剧ず + var threadInfoSearch = { + num: gprs.threadinfo, + dev_id:910000001 + }; + + // 鐐瑰嚮璁惧杩涚▼鎸夐挳 + $('#threadInfo').click(function() { + console.log(threadInfoSearch); + SendDeviceThreadInfo(threadInfoSearch,function(data){ + searchDeviceThreadInfo({dev_id:910000001}); + }); + }); + + + + + //缁橤PRS鍙戦�佹寚瀹氱殑鍛戒护锛岃幏鍙朅T杩斿洖鍊� + function SendDeviceThreadInfo(param,callback){ + $.ajax({ + type:"post", + url: "Bts_gprs_stateAction_action_update_bts_task_inf", + 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); + } + } + }); + } + + //鏌ヨ璁惧鐨勮繘绋嬩俊鎭� + function searchDeviceThreadInfo(param,callback){ + $.ajax({ + type:"post", + url: "Bts_gprs_stateAction_action_serchByCondition", + async:true, + dataType:'json', + data:'json='+JSON.stringify(param), + success: function(data){ + var model = eval('('+data.result+')'); + console.info(model); + var btsTaskInf = model.data[0].bts_task_inf; + layer.open({ + title: '璁惧杩涚▼', + width: 380, + height: 450, + content: '<pre>'+btsTaskInf+'</pre>' + }); + + if(callback && typeof callback == 'function'){ + callback(model); + } + },error:function(e){ + var model = { + code:0, + data:e, + msg:'閫氫俊澶辫触' + }; + if(callback && typeof callback == 'function'){ + callback(model); + } + } + }); + } + }); // 鏈哄巻鍗℃ā鍧� -- Gitblit v1.9.1