国内流行的内容管理系统(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.

112 lines
4.5KB

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