| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <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-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 class="am-text-center">用户</th>
- <th>优惠券ID</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-center">
- <p class=""><?= $item['user']['nickName'] ?></p>
- <p class="am-link-muted">(用户id:<?= $item['user']['user_id'] ?>)</p>
- </td>
- <td class="am-text-middle"><?= $item['coupon_id'] ?></td>
- <td class="am-text-middle"><?= $item['name'] ?></td>
- <td class="am-text-middle"><?= $item['coupon_type']['text'] ?></td>
- <td class="am-text-middle"><?= $item['min_price'] ?></td>
- <td class="am-text-middle">
- <?php if ($item['coupon_type']['value'] == 10) : ?>
- <span>立减 <strong><?= $item['reduce_price'] ?></strong> 元</span>
- <?php elseif ($item['coupon_type']['value'] == 20) : ?>
- <span>打 <strong><?= $item['discount'] ?></strong> 折</span>
- <?php endif; ?>
- </td>
- <td class="am-text-middle">
- <?php if ($item['expire_type'] == 10) : ?>
- <span>领取 <strong><?= $item['expire_day'] ?></strong> 天内有效</span>
- <?php elseif ($item['expire_type'] == 20) : ?>
- <span><?= $item['start_time']['text'] ?>
- ~ <?= $item['end_time']['text'] ?></span>
- <?php endif; ?>
- </td>
- <td class="am-text-middle"><?= $item['create_time'] ?></td>
- </tr>
- <?php endforeach; else: ?>
- <tr>
- <td colspan="11" 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>
|