|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>网站栏目管理</title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- <script src="/static/web/js/jquery.min.js"></script>
- <script src="/static/web/js/webajax.js"></script>
- <script src="/static/web/js/admin.catalog.js"></script>
- </head>
- <body>
- <table class="table shadow-sm my-3">
- <tr>
- <td>
- <a href="catalog_add.php?listtype=all" class="btn btn-success btn-sm">添加栏目</a>
- <a href="catalog_add.php?dopost=quick" class="btn btn-success btn-sm">批量添加</a>
- <a href="catalog_do.php?dopost=upcatcache" class="btn btn-success btn-sm">更新缓存</a>
- <button type="button" name="sb1" class="btn btn-success btn-sm" onclick="document.form1.submit();">更新排序</button>
- </td>
- <td align="right">
- <?php if (!isset($exallct)) {?>
- <a href="catalog_main.php?exallct=all" class="btn btn-success btn-sm">展开栏目</a>
- <?php } else {?>
- <a href="catalog_main.php" class="btn btn-success btn-sm">收缩栏目</a>
- <?php }?>
- </td>
- </tr>
- </table>
- <form name="form1" method="post" action="catalog_do.php?dopost=upRankAll">
- <table class="shadow-sm mb-3">
- <tr>
- <td class="admin-td">网站栏目管理</td>
- </tr>
- <tr>
- <td class="admin-td">
- <?php
- if (empty($opendir)) $opendir=-1;
- if ($userChannel>0) $opendir=$userChannel;
- $tu = new TypeUnit();
- $tu->ListAllType($userChannel,$opendir);
- ?>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|