uploads.htm
4.61 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
<!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>附件数据管理 - 会员中心 - <?php echo $cfg_webname; ?></title>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="templets/js/j.js"></script>
<script type="text/javascript" src="templets/js/load.js"></script>
<script type="text/javascript" src="templets/js/leftmenu.js"></script>
<script type="text/javascript">
function ChangeImage(surl){ document.getElementById('picview').src = surl; }
//获得选中文件的文件名
function getCheckboxItem(){
var allSel="";
if(document.form1.aids.value) return document.form1.aids.value;
for(i=0;i<document.form1.aids.length;i++)
{
if(document.form1.aids[i].checked){
if(allSel=="")
allSel=document.form1.aids[i].value;
else
allSel=allSel+","+document.form1.aids[i].value;
}
}
return allSel;
}
function AllSel(){
for(i=0;i<document.form1.aids.length;i++){
document.form1.aids[i].checked = true;
}
}
function NoneSel(){
for(i=0;i<document.form1.aids.length;i++){
document.form1.aids[i].checked = false;
}
}
function DelSel(){
var nid = getCheckboxItem();
if(nid==""){
alert("请选择项目!\r\n");
return ;
}
location.href = "archives_do.php?dopost=delUploads&ids="+nid;
}
</script>
</head>
<body>
<div id="main">
<?php include(DEDEMEMBER."/templets/head.htm"); ?>
<div id="content" class="w960 clearfix">
<?php include(DEDEMEMBER."/templets/menu.php");?>
<div id="mcpmain">
<div id="appTab">
<ul>
<li class="thisTab"><a href="uploads.php">附件管理</a></li>
</ul>
<div class="tabOther">
<form name='forms' method='post' action='uploads_select.php'>
<input name="keyword" type="text" id="keyword" class="text" value="<?php echo $keyword?>" />
<select name='mediatype'>
<option value='0'>文件类型</option>
<option value='1'<?php if($mediatype==1) echo " selected='1' "; ?>>图片</option>
<option value='2'<?php if($mediatype==2) echo " selected='1' "; ?>>FLASH</option>
<option value='3'<?php if($mediatype==3) echo " selected='1' "; ?>>视频/音频</option>
<option value='4'<?php if($mediatype==4) echo " selected='1' "; ?>>其它附件</option>
</select>
<button class="button2 mL10" type="submit">搜索</button>
</form>
</div>
</div>
<div id="mainCp">
<h3 class="meTitle">附件数据管理</h3>
<form name="form1">
<div class="postForm">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<thead>
<tr>
<th width="5%"><input name="checkedClick" type="checkbox" value="" id="checkedClick"/></th>
<th>文件标题</th>
<th width="8%">大小 </th>
<th width="10%">类型 </th>
<th width="18%">上传时间 </th>
<th width="12%">操作</th>
</tr>
</thead>
<tbody>
{dede:datalist}
<tr>
<td><input type='checkbox' name='aids' id='aids<?php echo $fields['aid']?>' value='<?php echo $fields['aid']; ?>' class='np' style="width: 31px;"/></td>
<td valign="middle"><a href='<?php echo $fields['url']?>' target='_blank'><?php echo GetImageView($fields['url'],$fields['mediatype']); ?> <?php echo $fields['title']; ?> </a></td>
<td align="center"><?php echo GetFileSize($fields['filesize']); ?></td>
<td align="center"><?php echo MediaType($fields['mediatype'],$fields['url']); ?></td>
<td align="center"><?php echo MyDate("Y-m-d H:i",$fields['uptime']); ?></td>
<td align="center"><a href='uploads_edit.php?aid=<?php echo $fields['aid']; ?>'>更改</a> | <a href='archives_do.php?dopost=delUploads&aid=<?php echo $fields['aid']; ?>'>删除</a> </td>
</tr>
{/dede:datalist}
</tbody>
<tfoot>
<tr>
<td colspan="5"><button class="buttonGary2 mt10" onclick="DelSel();">删除</button>
<div class="pageList">{dede:pagelist listsize=10/}</div>
</td>
</tr>
</tfoot>
</table>
</div>
</form>
<!--主操作区域 -->
</div>
</div>
</div>
<?php include(DEDEMEMBER."/templets/foot.htm"); ?>
</div>
</body>
</html>