|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>采集内容管理</title>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link href="css/base.css" rel="stylesheet" type="text/css">
- <script language="javascript">
-
- //获得选中文件的文件名
- function getCheckboxItem() {
- var allSel = "";
- if (document.form1.logs.value) return document.form1.logs.value;
- for (i = 0; i < document.form1.logs.length; i++) {
- if (document.form1.logs[i].checked) {
- if (allSel == "")
- allSel = document.form1.logs[i].value;
- else
- allSel = allSel + "`" + document.form1.logs[i].value;
- }
- }
- return allSel;
- }
-
- function ReSel() {
- for (i = 0; i < document.form1.logs.length; i++) {
- if (document.form1.logs[i].checked) document.form1.logs[i].checked = false;
- else document.form1.logs[i].checked = true;
- }
- }
-
- function DelSel() {
- var nid = getCheckboxItem();
- if (nid == "") {
- alert("请选择项目!\r\n");
- return;
- }
- location.href = "log_edit.php?dopost=del&ids=" + nid;
- }
-
- function ClearLog() {
- location.href = "log_edit.php?dopost=clear";
- }
-
- </script>
- </head>
- <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
- <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D6D6D6" align="center" class="table maintable table-bordered mt-3">
- <tr>
- <td height="26" colspan="7" background='images/tbg.gif'>
- <table width="96%" border="0" cellpadding="0" cellspacing="0" class="table table-borderless">
- <tr>
- <td width="20%" height="18" style="padding-left:10px"><strong>管理系统日志:</strong></td>
- <td width="80%" align="right"> </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr align="center" bgcolor="#ffffff">
- <td colspan="7">
- <table width="90%" border="0" cellspacing="0" cellpadding="0" class="table-borderless">
- <form name='formsearch'>
- <tr>
- <td>
- 管理员:
- <select name="adminid" id="adminid" style="width:90px">
- <option value="0" selected>--全部--</option>
- <?php echo $adminlist?>
- </select>
- IP地址:
- <input name="cip" type="text" id="cip" size="15" style="width:100px" />
- 时间:
- <select name="dtime" id="dtime">
- <option value="0" selected>--全部--</option>
- <option value="7">一周内</option>
- <option value="15">15天内</option>
- <option value="30">30天以内</option>
- <option value="60">60天以内</option>
- </select>
-
- <button type="submit" class="btn btn-success btn-sm">搜索</button>
- </td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- <tr align="center" bgcolor="#FBFCE2">
- <td width="8%">选择</td>
- <td width="11%">管理员</td>
- <td width="15%">访问文件</td>
- <td width="8%">方式</td>
- <td width="14%">访问IP</td>
- <td width="16%">时间</td>
- <td width="28%">Query参数</td>
- </tr>
- <form name="form1">
- {dede:datalist}
- <tr align="center" bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
- <td>
- <input name='logs' type='checkbox' class='np' id="logs" value='{dede:field.lid/}' />
- </td>
- <td>
- {dede:field.userid/}
- </td>
- <td>
- <input class="np" type="text" value="{dede:field.filename/}" name="t0" style="width:100px" />
- </td>
- <td>
- {dede:field.method/}
- </td>
- <td>
- {dede:field.cip/}
- </td>
- <td>
- {dede:field.dtime function="MyDate('y/m/d H:i:s',@me)" /}
- </td>
- <td>
- <input class="np" type="text" value="{dede:field.query/}" name="t1" style="width:280px" />
- </td>
- </tr>
- {/dede:datalist}
- </form>
- <tr>
- <td height="30" colspan="7" bgcolor="#FCFDF7">
- <button type="button" onClick="ReSel();" class="btn btn-success btn-sm">反选</button>
- <button type="button" onClick="DelSel();" class="btn btn-success btn-sm">删除所选</button>
- <button type="button" onClick="ClearLog();" class="btn btn-success btn-sm">清空所有日志</button>
- </td>
- </tr>
- <tr bgcolor="#F9FCEF">
- <td height="26" colspan="7" align="center">
- {dede:pagelist listsize='5' /}
- </td>
- </tr>
- </table>
- </body>
-
- </html>
|