member_mood_main.htm
4.7 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
<!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 = "member_msg_edit.php?dopost=del&ids="+nid;
}
function CheckSel(){
var nid = getCheckboxItem();
if(nid==""){
alert("请选择项目!\r\n");
return ;
}
location.href = "member_msg_edit.php?dopost=check&ids="+nid;
}
</script>
<style type="text/css">
.current {border:1px solid #98CAEF;padding:5px;background:#FFFEF4;color:#FF0000;}
</style>
</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="4" 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"><table width="88%" border="0" cellspacing="0" cellpadding="0">
<form name='formsearch'>
<input type="hidden" value="<?php echo $ischeck;?>" name="ischeck">
<input type="hidden" value="mood" name="type">
<tr>
<td height="21" align="right"> 时间:
<select name="dtime">
<option value="0" selected>--全部--</option>
<option value="1">今天</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>
</table></td>
</tr>
<tr align="center" bgcolor="#ffffff">
<td height="32" colspan="4" align="left" bgcolor="#FAFAF1"><span <?php if(empty($ischeck)) echo "class='current'";?>><a href='member_info_main.php?type=mood'>全部(<?php echo $totalnum;?>)</a></span> | <span <?php if($ischeck=='1') echo "class='current'";?>><a href='member_info_main.php?type=mood&ischeck=1'>已审核(<?php echo $checknum;?>)</a></span>| <span <?php if($ischeck=='-1') echo "class='current'";?>><a href='member_info_main.php?type=mood&ischeck=-1'>未审核(<?php echo $ischecknum;?>)</a></span></td>
</tr>
<tr align="center" height="26" bgcolor="#FBFCE2">
<td width="8%">选择</td>
<td width="11%">ID</td>
<td>内容</td>
<td width="15%">时间</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.id/}' /></td>
<td width="11%">{dede:field.id /} </td>
<td align="left">{dede:field.msg function='jstrimjajxlog(@me,200)'/} [{dede:field.ischeck function=IsChecklog(@me)/}](<a href='member_info_main.php?type=mood&dopost=pall&mid={dede:field.mid/}'>{dede:field.userid/}</a>)</td>
<td> {dede:field.dtime function="floorTime(time()-@me,@me)" /} </td>
</tr>
{/dede:datalist}
</form>
<tr>
<td height="30" colspan="4" bgcolor="#ffffff">
<input type="button" name="b5" value="反选" style="width:40px" class="coolbg np" onClick="ReSel();" />
<input type="button" name="b5" value="审核" style="width:40px" class="coolbg np" onClick="CheckSel();" />
<input type="button" name="b6" value="删除所选" style="width:80px" class="coolbg np" onClick="DelSel();" />
</td>
</tr>
<tr bgcolor="#E3F7D2">
<td height="24" colspan="4" align="center" bgcolor="#F9FCEF"> {dede:pagelist listsize='5' /} </td>
</tr>
</table>
</body>
</html>