log_list.htm
4.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!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 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">
<tr>
<td height="28" colspan="7" background='images/tbg.gif'>
<table width="96%" border="0" cellpadding="0" cellspacing="0">
<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">
<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>
<input type="submit" name="Submit" value="搜索" />
</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">
<input type="button" name="b5" value="反选" style="width:40px" class="coolbg np" onClick="ReSel();" />
<input type="button" name="b6" value="删除所选" style="width:80px" class="coolbg np" onClick="DelSel();" />
<input type="button" name="b7" value="清空所有日志" style="width:100px" class="coolbg np" onClick="ClearLog();" />
</td>
</tr>
<tr bgcolor="#F9FCEF">
<td height="24" colspan="7" align="center">
{dede:pagelist listsize='5' /}
</td>
</tr>
</table>
</body>
</html>