mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
808 B
33 lines
808 B
<style>
|
|
.help{
|
|
background-color: #f6f6f6;
|
|
border: 1px solid #dedede;
|
|
border-radius: 3px;
|
|
line-height: 24px;
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
<div class="divtable pd20">
|
|
<button class="btn btn-success btn-sm" style="margin-bottom: 5px;" onclick="addHook()">添加Hook</button>
|
|
<table class="table table-hover" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
<thead>
|
|
<tr>
|
|
<th>名称</th>
|
|
<th>添加时间</th>
|
|
<th>近期调用</th>
|
|
<th>调用次数</th>
|
|
<th>密钥</th>
|
|
<th style="text-align: right;" width="150">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="zipBody"></tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
resetPluginWinWidth(1000);
|
|
$.getScript( "/plugins/file?name=webhook&f=js/webhook.js",function() {
|
|
getHookList();
|
|
});
|
|
</script> |