uploads_select.htm
3.56 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
<!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>
<title>浏览我的附件 - 会员中心 - <?php echo $cfg_webname; ?></title>
<?php include(DEDEMEMBER."/templets/head_inc.htm"); ?>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" language="javascript">
var fname = '<?php echo $f; ?>';
var mediatype = '<?php echo $mediatype; ?>';
var keyword = '<?php echo $keyword; ?>';
function addNew()
{
location = "uploads_add.php?f="+fname+"&mediatype="+mediatype+"&keyword="+keyword;
}
function selOK(surl)
{
window.opener.document.<?php echo $f; ?>.value=surl;
if(document.all) window.opener=true;
window.close();
}
</script>
</head>
<body>
<table width="96%" style="margin-top:20px;" align="center">
<tr>
<td>
<form name='forms' method='post' action='uploads_select.php'>
<input type="hidden" name="f" value="<?php echo $f; ?>" />
<input type="hidden" name="mediatype" value="<?php echo $mediatype; ?>" />
<input type="hidden" name="keyword" value="<?php echo $keyword; ?>" />
<input name="keyword" type="text" id="keyword" class="intxt" style="width:200px;" 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></td>
<td style="text-align:right;"><button class="buttonGary5 mR10" type="button" onclick="addNew();">上传新文件</button></td>
</tr>
</table>
<form name="form1" class="mTB10">
<table cellspacing="1" class="list" width="96%" align="center">
<thead>
<tr>
<th align="left" width="35" align="cener"><input name="checkedClick" type="checkbox" value="" id="checkedClick"></th>
<th>文件标题</th>
<th width="10%">大小 </th>
<th width="10%">类型 </th>
<th width="15%">上传时间 </th>
</tr>
</thead>
<tbody>
{dede:datalist}
<tr>
<td width="35" align="cener"><input type='checkbox' name='aids' id='aids<?php echo $fields['aid']?>' value="<?php echo $fields['url']; ?>" onclick="selOK('<?php echo $fields['url']; ?>');" /></td>
<td><?php
$color = '';
if($filename==$fields['url']) $color=" style='color:red' ";
?>
<a href="#" onclick="selOK('<?php echo $fields['url']; ?>');" <?php echo $color; ?>> <?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",$fields['uptime']); ?></td>
</tr>
{/dede:datalist}
</tbody>
<tfoot>
<tr>
<td colspan="6"><div>
<div class="fLeft">
<button class="buttonGary5 mt10" type="button" onclick="addNew();">上传新文件</button>
</div>
<div class="pages fRight mt10">{dede:pagelist listsize=5/}</div>
</div></td>
</tr>
</tfoot>
</table>
</form>
</body>
</html>