Files
liche/admin/views/app/bobing/member/lists_day.php
T
2021-09-10 14:43:33 +08:00

28 lines
933 B
PHP

<div class="coms-table-wrap mt10">
<div class="coms-table-bd">
<div class="fr">共有<?= $pager['totle'] ?>条数据</div>
<table class="am-table am-table-bordered">
<thead>
<tr>
<th width="10%"><span>博饼日期</span></th>
<th width="10%"><span>积分</span></th>
<th width="10%"><span>是否中奖</span></th>
</tr>
</thead>
<tbody>
<?php foreach ($lists as $v) { ?>
<tr>
<td><?= $v['bo_date'] ?></td>
<td><?= $v['credit'] ?></td>
<td><?= $v['lottery'] ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<div class="coms-table-ft clearfix">
<div class="coms-pagination fr mr20">
<?php page_view($pager) ?>
</div>
</div>
</div>