33 lines
856 B
HTML
Executable File
33 lines
856 B
HTML
Executable File
<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 width="150">添加时间</th>
|
|
<th width="150">近期调用</th>
|
|
<th width="100">调用次数</th>
|
|
<th width="100">密钥</th>
|
|
<th style="text-align: right;" width="180">操作</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> |