feedback_main.htm
4.98 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!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>
<script language='javascript'>
//获得选中文件的文件名
function getCheckboxItem()
{
var allSel="";
if(document.feedback.fid.value) return document.feedback.fid.value;
for(i=0;i<document.feedback.fid.length;i++)
{
if(document.feedback.fid[i].checked)
{
if(allSel=="")
allSel=document.feedback.fid[i].value;
else
allSel=allSel+","+document.feedback.fid[i].value;
}
}
return allSel;
}
function selAll()
{
for(i=0;i<document.feedback.fid.length;i++)
{
document.feedback.fid[i].checked=true;
}
}
function selNone()
{
for(i=0;i<document.feedback.fid.length;i++)
{
document.feedback.fid[i].checked=false;
}
}
function selNor()
{
for(i=0;i<document.feedback.fid.length;i++)
{
if(document.feedback.fid[i].checked==false)
document.feedback.fid[i].checked=true;
else
document.feedback.fid[i].checked=false;
}
}
function delFeedback()
{
var qstr=getCheckboxItem();
if(qstr=="") alert("你没选中任何内容!");
else if(window.confirm('你确定要删除这些评论吗?')) location.href="feedback_main.php?job=del&fid="+qstr;
}
function delFeedbackIP()
{
var qstr=getCheckboxItem();
if(qstr=="") alert("你没选中任何内容!");
else if(window.confirm('你确定要删除这些评论吗?')) location.href="feedback_main.php?job=delall&fid="+qstr;
}
function checkFeedback()
{
var qstr=getCheckboxItem();
if(qstr=="") alert("您没选中任何内容!");
else location.href="feedback_main.php?job=check&fid="+qstr;
}
function editFeedback()
{
var qstr=getCheckboxItem();
if(qstr=="") alert("您没选中任何内容!");
else location.href="feedback_edit.php?job=edit&fid="+qstr;
}
</script>
<link href="css/base.css" rel="stylesheet" type="text/css">
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" cellpadding="3" align="center" cellspacing="1" bgcolor="#D6D6D6">
<tr>
<td height="28" background='images/tbg.gif' style="padding-left:10px;">
<div style="float:left;">
<a href='feedback_main.php'><u><b>评论管理</b></u></a>
</div>
<div style="float:right;padding-right:10px">
<form name='form1'>
关键字:
<input type='text' size='15' name='keyword' style='width:150'>
<select name="typeid" style="width:180">
<option value="0">--请选择--</option>
{dede:global.openarray /}
</select>
<input type='submit' name='sb' value=' 搜索 ' class='coolbt' />
</form>
</div>
</td>
</tr>
<form name='feedback'>
<tr>
<td height="215" bgcolor="#FFFFFF" valign="top">
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
{dede:datalist}
<tr height='25'>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#EEF7D2">
<tr bgcolor="#F4FAE4">
<td width="9%">
选择 <input name="fid" type="checkbox" class="np" id="fid" value="{dede:field.id/}">
</td>
<td width="12%">
用户:{dede:field.username/}
</td>
<td width="30%">
文档:<a href='feedback_main.php?aid={dede:field.aid/}'><u>{dede:field.arctitle function="RemoveXSS(@me)"/}</u></a> (<a href="{dede:global.cfg_phpurl /}/view.php?aid={dede:field.aid/}" target="_blank"><u>浏览</u></a>)
</td>
<td width="18%" align="center">
IP地址:<a href='feedback_main.php?ip={dede:field.ip/}'><u>{dede:field.ip/}</u></a>
</td>
<td width="21%">
时间:{dede:field.dtime function="GetDateTimeMK(@me)" /}
</td>
<td width="10%" align="center">
<a href='feedback_edit.php?id={dede:field.id/}'><img src="images/feedback-edit.gif" border="0" width="45" height="18"></a>
</td>
</tr>
<tr align="center" bgcolor="#FFFFFF">
<td height="28" colspan="6">
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left">
{dede:field.ischeck function="IsCheck(@me)" /}
{dede:field.msg function='cn_substr(Text2Html(@me), 50)'/}
</td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="3"></td>
</tr>
</table></td>
</tr>
{/dede:datalist}
<tr>
<td height='20' align='center' bgcolor="#F9FCEF">
{dede:pagelist listsize='5' /}
</td>
</tr>
<tr>
<td height='30'>
<table width="98%">
<tr>
<td width="30%">
<input type='button' name='kk1' value='全选' onClick="selAll()" class="coolbg np" />
<input type='button' name='kk2' value='取消' onClick="selNone()" class="coolbg np" />
<input type='button' name='kk3' value='反选' onClick="selNor()" class="coolbg np" />
</td>
<td align="right">
<input type='button' name='db' value=' 删除相同IP的所有评论 ' onClick="delFeedbackIP()" class="coolbg np" />
<input type='button' name='db' value=' 删除评论 ' onClick="delFeedback()" class="coolbg np" />
<input type='button' name='db2' value=' 审核评论 ' onClick="checkFeedback()" class="coolbg np" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</form>
</table>
</body>
</html>