Authored by jack.xue

add queue query

... ... @@ -11,4 +11,6 @@ public class RabbitInfoReq extends PageRequest {
String moId;
String moType;
String queueKey;
}
... ...
... ... @@ -48,6 +48,11 @@
<div class="span12">
<div class="section section-visible">
<h3>Queues</h3>
<div class="input-group" style="float: right; margin-right: 50px;">
<input type="text" id="tx_search_queue" width="50" style="display: inline" placeholder="队列关键字"/>
&ensp; &ensp; &ensp; &ensp;
<button type="button" class="btn btn-default" data-dismiss="modal" id="search_button">搜索</button>
</div>
<div class="hider updatable" style="display:block;">
<table class="table table-bordered table-striped table-hover" id="queueViewTable">
</table>
... ... @@ -61,6 +66,15 @@
</div>
<script>
$("#search_button").click(function () {
var key=$("#tx_search_queue").val();
$("#queueViewTable").table("load",
{
'moId': moId,
'queueKey': key
})
})
</script>
<script src="<%=basePath %>js/rabbit.js" type="text/javascript"></script>
\ No newline at end of file
... ...