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

106 lines
4.6KB

  1. <!doctype html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <script src="<?php echo $cfg_cmsurl;?>/static/js/jquery.min.js"></script>
  7. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/css/bootstrap.min.css">
  8. <link href="<?php echo $cfg_cmsurl;?>/static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/css/dede.css">
  10. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/css/member.css">
  11. <title>文档管理 - 会员中心 - <?php echo $cfg_webname; ?></title>
  12. </head>
  13. <body>
  14. <?php include(DEDEMEMBER."/templets/top_login.htm"); ?>
  15. <main class="member">
  16. <?php include(DEDEMEMBER."/templets/info.htm"); ?>
  17. <div class="container-fluid pannel">
  18. <div class="container">
  19. <div class="row">
  20. <?php
  21. $_menu_conex = true; // 展开编辑信息
  22. ?>
  23. <?php include(DEDEMEMBER."/templets/menu.htm"); ?>
  24. <div class="pannel-main col-md-9 mt-3 mb-3">
  25. <div class="pannel-main-container">
  26. <ul class="nav mt-2">
  27. <li class="nav-item">
  28. <a class="nav-link<?php echo ($arcrank=='')? ' active' : '';?>"
  29. href="content_list.php?channelid=<?php echo $channelid;?>">全部</a>
  30. </li>
  31. <li class="nav-item">
  32. <a class="nav-link<?php echo ($arcrank=='1')? ' active' : '';?>"
  33. href="content_list.php?channelid=<?php echo $channelid;?>&arcrank=1">已审核</a>
  34. </li>
  35. <li class="nav-item">
  36. <a class="nav-link<?php echo ($arcrank=='-1')? ' active' : '';?>"
  37. href="content_list.php?channelid=<?php echo $channelid;?>&arcrank=-1">未审核</a>
  38. </li>
  39. <li class="nav-item">
  40. <a class="nav-link<?php echo ($arcrank=='-2')? ' active' : '';?>"
  41. href="content_list.php?channelid=<?php echo $channelid;?>&arcrank=-2">被退回</a>
  42. </li>
  43. </ul>
  44. <div class="table-responsive">
  45. <table width="100%" border="0" cellpadding="0" cellspacing="0" class="table">
  46. <thead>
  47. <tr>
  48. <th>文章标题</th>
  49. <th>类目 </th>
  50. <th>状态 </th>
  51. <th>点击 </th>
  52. <th>发布时间 </th>
  53. <th>操作</th>
  54. </tr>
  55. </thead>
  56. <tbody>
  57. {dede:datalist}
  58. <tr>
  59. <td class="tabTitle"><a
  60. href='<?php echo $cfg_phpurl; ?>/view.php?aid=<?php echo $fields['id']; ?>'
  61. target='_blank'><?php echo $fields['title']; ?><?php echo IsPicArchives($fields['litpic']); ?></a>
  62. </td>
  63. <td align="center"><?php echo $fields['typename']; ?></td>
  64. <td align="center"><?php
  65. if($fields['arcrank']>=0) echo "已审核";
  66. else if($fields['arcrank']==-2) echo "<font color='blue'>被退回</font>";
  67. else echo "<font color='red'>未审核</font>";
  68. ?></td>
  69. <td align="center"><?php echo $fields['click']; ?></td>
  70. <td><?php echo GetDateMk($fields['senddate']); ?></td>
  71. <td align="center" class="doPost"><?php
  72. if($fields['arcrank']<0 || $dtime - $fields['senddate'] < $maxtime)
  73. {
  74. ?>
  75. <a href="javascript:editArc(<?php echo $fields['id']?>,<?php echo $fields['channel']?>);">修改</a>
  76. | <a href="javascript:delArc(<?php echo $fields['id']?>);">删除</a> |
  77. <?php
  78. }
  79. else
  80. {
  81. echo "<span class='gray'>改 | 删 | </span>";
  82. }
  83. ?> <a href="javascript:viewArc(<?php echo $fields['id']; ?>);">预览</a></td>
  84. </tr>
  85. {/dede:datalist}
  86. </tbody>
  87. </table>
  88. </div>
  89. <nav>
  90. {dede:pagelist listsize=5 /}
  91. </nav>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. </main>
  98. <?php include(DEDEMEMBER."/templets/footer.htm"); ?>
  99. </body>
  100. </html>