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

56 line
2.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>网站栏目管理</title>
  7. <link rel="stylesheet" href="/static/web/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. <script src="/static/web/js/jquery.min.js"></script>
  11. <script src="/static/web/js/webajax.js"></script>
  12. <script src="/static/web/js/admin.catalog.js"></script>
  13. </head>
  14. <body>
  15. <div class="container-fluid">
  16. <ol class="breadcrumb">
  17. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  18. <li class="breadcrumb-item active">网站栏目管理</li>
  19. </ol>
  20. <div class="card shadow-sm mb-3">
  21. <div class="card-body">
  22. <?php if (!isset($exallct)) {?>
  23. <a href="catalog_main.php?exallct=all" class="btn btn-success btn-sm">展开栏目</a>
  24. <?php } else {?>
  25. <a href="catalog_main.php" class="btn btn-success btn-sm">收缩栏目</a>
  26. <?php }?>
  27. <a href="catalog_add.php?listtype=all" class="btn btn-success btn-sm">添加栏目</a>
  28. <a href="catalog_add.php?dopost=quick" class="btn btn-success btn-sm">批量添加</a>
  29. <a href="catalog_do.php?dopost=upcatcache" class="btn btn-success btn-sm">更新缓存</a>
  30. <button type="button" class="btn btn-success btn-sm" onclick="document.form1.submit();">更新排序</button>
  31. </div>
  32. </div>
  33. <div class="card shadow-sm">
  34. <div class="card-header">网站栏目管理</div>
  35. <div class="card-body">
  36. <form name="form1" method="post" action="catalog_do.php?dopost=upRankAll">
  37. <div class="table-responsive">
  38. <table class="table table-borderless">
  39. <tr>
  40. <td>
  41. <?php
  42. if (empty($opendir)) $opendir=-1;
  43. if ($userChannel > 0) $opendir=$userChannel;
  44. $tu = new TypeUnit();
  45. $tu->ListAllType($userChannel,$opendir);
  46. ?>
  47. </td>
  48. </tr>
  49. </table>
  50. </div>
  51. </form>
  52. </div>
  53. </div>
  54. </div>
  55. </body>
  56. </html>