| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <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="tips am-margin-bottom am-u-sm-12">
- <div class="pre">
- <p> 注:仅展示7天内在小程序中活跃(浏览点击)的用户。</p>
- <p> 注:formId有效期是7天,可用于向用户发送模板消息。</p>
- </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>formid数量</th>
- <th>注册时间</th>
- </tr>
- </thead>
- <tbody>
- <?php if (!$list->isEmpty()): foreach ($list as $item): ?>
- <tr>
- <td class="am-text-middle"><?= $item['user_id'] ?></td>
- <td class="am-text-middle">
- <a href="<?= $item['user']['avatarUrl'] ?>" title="点击查看大图" target="_blank">
- <img src="<?= $item['user']['avatarUrl'] ?>" width="72" height="72" alt="">
- </a>
- </td>
- <td class="am-text-middle"><?= $item['user']['nickName'] ?></td>
- <td class="am-text-middle"><?= $item['total_formid'] ?></td>
- <td class="am-text-middle"><?= $item['user']['create_time'] ?></td>
- </tr>
- <?php endforeach; else: ?>
- <tr>
- <td colspan="5" 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 () {
- });
- </script>
|