|
- <!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 rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/font-awesome/css/font-awesome.min.css">
- <link rel="stylesheet" href="css/base.css">
- <style>
- .napisdiv {
- left: 10;
- top: 0;
- width: 150px;
- height: 100px;
- position: absolute;
- z-index: 3
- }
- </style>
- <script>
- 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 = "media_edit.php?dopost=del&ids=" + nid;
- }
- </script>
- </head>
- <body background="images/allbg.gif" leftmargin="8" topmargin="8">
- <div id="floater" class="napisdiv">
- <a href="javascript:;" onClick="ChangeImage('./dialog/img/picviewnone.gif');">
- <img src='./dialog/img/picviewnone.gif' id='picview' name='picview' border='0' alt='单击关闭预览' style='z-index:10000'>
- </a>
- </div>
- <SCRIPT src="js/float.js"></SCRIPT>
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf" class="table maintable table-bordered mt-3">
- <tr>
- <td height="26" colspan="7" background="images/tbg.gif">
- <table width='96%' cellpadding='0' cellspacing='0' style="padding-left:10px" class="table-borderless">
- <tr>
- <td width='30%'><b>附件数据管理</b></td>
- <td align='right'>
- <a href="media_add.php" class="btn btn-success btn-sm">上传新文件</a>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr bgcolor="#ffffff" height="26">
- <td colspan="7">
- <table width="800" border="0" cellspacing="0" cellpadding="0" class="table-borderless">
- <form name='forms' method='post' action='media_main.php'>
- <tr>
- <td width="10"> </td>
- <td width="100" align="center">关键词:</td>
- <td width="100">
- <input name="keyword" type="text" id="keyword" style="width:100" value="<?php echo $keyword?>">
- </td>
- <td width="100" align="center">
- <select name='mediatype' style='width:80'>
- <option value='0'>文件类型</option>
- <option value='1' <?php if($mediatype==1) echo " selected"?>>图片</option>
- <option value='2' <?php if($mediatype==2) echo " selected"?>>FLASH</option>
- <option value='3' <?php if($mediatype==3) echo " selected"?>>视频/音频</option>
- <option value='4' <?php if($mediatype==4) echo " selected"?>>其它附件</option>
- </select> </td>
- <td width="100" align="center">
- <select name='membertype' style='width:80'>
- <option value='0'>用户组</option>
- <option value='1' <?php if($membertype==1) echo " selected"?>>管理员</option>
- <option value='2' <?php if($membertype==2) echo " selected"?>>外部会员</option>
- </select>
- </td>
- <td>
- <button type="submit" class="btn btn-success">搜索</button>
- </td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- <tr bgcolor="#FBFCE2" height="26" align="center">
- <td width="8%">选择</td>
- <td width="28%">文件标题</td>
- <td width="10%">文件大小</td>
- <td width="15%">上传会员</td>
- <td width="15%">上传时间</td>
- <td width="9%">文件类型</td>
- <td width="15%">管理</td>
- </tr>
- <form name='form1'>
- {dede:datalist}
- <tr align="center" bgcolor="#FFFFFF" height="26" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
- <td>
- <input type='checkbox' name='aids' id='aids{dede:field.aid/}' value='{dede:field.aid/}' class='np' />
- </td>
- <td>
- <a href='{dede:field.url/}' title='{dede:field.url/}' target='_blank'>
- {dede:field.title/}
- </a>
- </td>
- <td>{dede:field.filesize function='GetFileSize(@me)'/}</td>
- <td>{dede:field.adminname function="UploadAdmin(@me,$fields['membername'])"/}</td>
- <td>{dede:field.uptime function="MyDate('Y-m-d H:i',@me)"/}</td>
- <td>{dede:field.mediatype function="MediaType(@me,$fields['url'])"/}</td>
- <td>
- <a href='media_edit.php?aid={dede:field.aid/}&dopost=edit' class="btn btn-success btn-sm"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> 修改</a>
- <a href='media_edit.php?aid={dede:field.aid/}&dopost=del' class="btn btn-success btn-sm"><i class="fa fa-trash" aria-hidden="true"></i> 删除</a>
- </td>
- </tr>
- {/dede:datalist}
- <tr bgcolor="#ffffff" height="26">
- <td colspan="7">
- <button type="button" name="b4" class="btn btn-success btn-sm" onClick="AllSel();">全选</button>
- <button type="button" name="b5" class="btn btn-success btn-sm" onClick="NoneSel();">取消</button>
- <button type="button" name="b6" class="btn btn-success btn-sm" onClick="DelSel();">删除所选</button>
- </td>
- </tr>
- <tr bgcolor="#F9FCEF" height="36">
- <td colspan="7" align="center">
- {dede:pagelist listsize=5/}
- </td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|