| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <div class="row-content am-cf">
- <div class="row">
- <div class="am-u-sm-12 am-u-md-12 am-u-lg-12">
- <div class="widget am-cf">
- <div class="widget-head am-cf">
- <div class="widget-title am-cf">文章列表</div>
- </div>
- <div class="widget-body am-fr">
- <div class="am-u-sm-12 am-u-md-6 am-u-lg-6">
- <div class="am-form-group">
- <div class="am-btn-toolbar">
- <?php if (checkPrivilege('content.article/add')): ?>
- <div class="am-btn-group am-btn-group-xs">
- <a class="am-btn am-btn-default am-btn-success am-radius"
- href="<?= url('content.article/add') ?>">
- <span class="am-icon-plus"></span> 新增
- </a>
- </div>
- <?php endif; ?>
- </div>
- </div>
- </div>
- <div class="am-scrollable-horizontal am-u-sm-12">
- <table width="100%" class="am-table am-table-compact am-table-striped
- tpl-table-black am-text-nowrap">
- <thead>
- <tr>
- <th>文章ID</th>
- <th>文章标题</th>
- <th>封面图</th>
- <th>文章分类</th>
- <th>实际阅读量</th>
- <th>文章排序</th>
- <th>状态</th>
- <th>添加时间</th>
- <th>更新时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <?php if (!$list->isEmpty()): foreach ($list as $item): ?>
- <tr>
- <td class="am-text-middle"><?= $item['article_id'] ?></td>
- <td class="am-text-middle">
- <p class="item-title"
- style="max-width: 400px;"><?= $item['article_title'] ?></p>
- </td>
- <td class="am-text-middle">
- <a href="<?= $item['image']['file_path'] ?>" title="点击查看大图" target="_blank">
- <img src="<?= $item['image']['file_path'] ?>" height="72" alt="">
- </a>
- </td>
- <td class="am-text-middle"><?= $item['category']['name'] ?></td>
- <td class="am-text-middle"><?= $item['actual_views'] ?></td>
- <td class="am-text-middle"><?= $item['article_sort'] ?></td>
- <td class="am-text-middle">
- <span class="am-badge am-badge-<?= $item['article_status'] ? 'success' : 'warning' ?>">
- <?= $item['article_status'] ? '显示' : '隐藏' ?>
- </span>
- </td>
- <td class="am-text-middle"><?= $item['create_time'] ?></td>
- <td class="am-text-middle"><?= $item['update_time'] ?></td>
- <td class="am-text-middle">
- <div class="tpl-table-black-operation">
- <?php if (checkPrivilege('content.article/edit')): ?>
- <a href="<?= url('content.article/edit',
- ['article_id' => $item['article_id']]) ?>">
- <i class="am-icon-pencil"></i> 编辑
- </a>
- <?php endif; ?>
- <?php if (checkPrivilege('content.article/delete')): ?>
- <a href="javascript:void(0);"
- class="item-delete tpl-table-black-operation-del"
- data-id="<?= $item['article_id'] ?>">
- <i class="am-icon-trash"></i> 删除
- </a>
- <?php endif; ?>
- </div>
- </td>
- </tr>
- <?php endforeach; else: ?>
- <tr>
- <td colspan="10" class="am-text-center">暂无记录</td>
- </tr>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
- <div class="am-u-lg-12 am-cf">
- <div class="am-fr"><?= $list->render() ?> </div>
- <div class="am-fr pagination-total am-margin-right">
- <div class="am-vertical-align-middle">总记录:<?= $list->total() ?></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- $(function () {
- // 删除元素
- var url = "<?= url('content.article/delete') ?>";
- $('.item-delete').delete('article_id', url);
- });
- </script>
|