国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
4.7KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>附件数据管理</title>
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. <style>.napisdiv{position:absolute;left:10;top:0;width:150px;height:100px;z-index:3}</style>
  11. <script>
  12. //获得选中文件的文件名
  13. function getCheckboxItem() {
  14. var allSel = "";
  15. if (document.form1.aids.value) return document.form1.aids.value;
  16. for (i = 0; i < document.form1.aids.length; i++) {
  17. if (document.form1.aids[i].checked) {
  18. if (allSel == "")
  19. allSel = document.form1.aids[i].value;
  20. else
  21. allSel = allSel + "," + document.form1.aids[i].value;
  22. }
  23. }
  24. return allSel;
  25. }
  26. function AllSel() {
  27. for (i = 0; i < document.form1.aids.length; i++) {
  28. document.form1.aids[i].checked = true;
  29. }
  30. }
  31. function NoneSel() {
  32. for (i = 0; i < document.form1.aids.length; i++) {
  33. document.form1.aids[i].checked = false;
  34. }
  35. }
  36. function DelSel() {
  37. var nid = getCheckboxItem();
  38. if (nid == "") {
  39. alert("请选择项目");
  40. return;
  41. }
  42. location.href = "media_edit.php?dopost=del&ids=" + nid;
  43. }
  44. </script>
  45. </head>
  46. <body>
  47. <table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
  48. <form name="forms" method="post" action="media_main.php">
  49. <tr bgcolor="#f5f5f5">
  50. <td width="380" align="center"><input type="text" name="keyword" id="keyword" placeholder="请输入关键词" value="<?php echo $keyword?>" class="admin-input-md"></td>
  51. <td width="170">
  52. <select name="mediatype" class="admin-input-sm">
  53. <option value="0">文件类型</option>
  54. <option value="1" <?php if ($mediatype==1) echo "selected"?>>图片</option>
  55. <option value="2" <?php if ($mediatype==2) echo "selected"?>>FLASH</option>
  56. <option value="3" <?php if ($mediatype==3) echo "selected"?>>视频音频</option>
  57. <option value="4" <?php if ($mediatype==4) echo "selected"?>>其它附件</option>
  58. </select>
  59. </td>
  60. <td width="170">
  61. <select name="membertype" class="admin-input-sm">
  62. <option value="0">用户组</option>
  63. <option value="1" <?php if ($membertype==1) echo "selected"?>>管理员</option>
  64. <option value="2" <?php if ($membertype==2) echo "selected"?>>外部会员</option>
  65. </select>
  66. </td>
  67. <td>
  68. <button type="submit" class="btn btn-success btn-sm">搜索</button>
  69. <a href="media_add.php" class="btn btn-success btn-sm">上传新文件</a>
  70. </td>
  71. </tr>
  72. </form>
  73. </table>
  74. <table cellpadding="3" cellspacing="1" align="center" class="table maintable mb-3">
  75. <tr>
  76. <td bgcolor="#f5f5f5" colspan="7">附件数据管理</td>
  77. </tr>
  78. <tr bgcolor="#e9ecef" align="center">
  79. <td width="6%">选择</td>
  80. <td width="28%">文件标题</td>
  81. <td width="10%">文件大小</td>
  82. <td width="15%">上传会员</td>
  83. <td width="15%">上传时间</td>
  84. <td width="10%">文件类型</td>
  85. <td>管理</td>
  86. </tr>
  87. <form name="form1">
  88. {dede:datalist empty='<tr><td colspan="7" align="center">暂无文档</td></tr>'}
  89. <tr align="center" onmousemove="javascript:this.bgColor='#e9ecef';" onmouseout="javascript:this.bgColor='#ffffff';">
  90. <td><input type="checkbox" name="aids" id="aids{dede:field.aid/}" value="{dede:field.aid/}"></td>
  91. <td><a href="{dede:field.url/}" title="{dede:field.url/}" target="_blank">{dede:field.title/}</a>
  92. </td>
  93. <td>{dede:field.filesize function='GetFileSize(@me)'/}</td>
  94. <td>{dede:field.adminname function="UploadAdmin(@me,$fields['membername'])"/}</td>
  95. <td>{dede:field.uptime function="MyDate('Y-m-d H:i',@me)"/}</td>
  96. <td>{dede:field.mediatype function="MediaType(@me,$fields['url'])"/}</td>
  97. <td>
  98. <a href="media_edit.php?aid={dede:field.aid/}&dopost=edit" class="btn btn-success btn-sm"><i class="fa fa-pencil-square-o"></i> 修改</a>
  99. <a href="media_edit.php?aid={dede:field.aid/}&dopost=del" class="btn btn-danger btn-sm"><i class="fa fa-trash"></i> 删除</a>
  100. </td>
  101. </tr>
  102. {/dede:datalist}
  103. <tr>
  104. <td colspan="7">
  105. <button type="button" name="b4" onClick="AllSel();" class="btn btn-success btn-sm">全选</button>
  106. <button type="button" name="b5" onClick="NoneSel();" class="btn btn-success btn-sm">取消</button>
  107. <button type="button" name="b6" onClick="DelSel();" class="btn btn-danger btn-sm">删除</button>
  108. </td>
  109. </tr>
  110. <tr>
  111. <td bgcolor="#f5f5f5" colspan="7" align="center">{dede:pagelist listsize='6'/}</td>
  112. </tr>
  113. </form>
  114. </table>
  115. </body>
  116. </html>